Don't define source_root on Windows
This commit is contained in:
parent
33109a2718
commit
8de9c75caf
1 changed files with 5 additions and 3 deletions
|
@ -1,8 +1,5 @@
|
||||||
{
|
{
|
||||||
'variables': {
|
'variables': {
|
||||||
# The abosulte version of <(DEPTH).
|
|
||||||
'source_root': '<!(cd <(DEPTH) && pwd -P)',
|
|
||||||
|
|
||||||
# Clang stuff.
|
# Clang stuff.
|
||||||
'make_clang_dir%': 'vendor/llvm-build/Release+Asserts',
|
'make_clang_dir%': 'vendor/llvm-build/Release+Asserts',
|
||||||
# Set this to true when building with Clang.
|
# Set this to true when building with Clang.
|
||||||
|
@ -33,6 +30,11 @@
|
||||||
'clang%': 0,
|
'clang%': 0,
|
||||||
}], # OS=="win"
|
}], # OS=="win"
|
||||||
|
|
||||||
|
# Define the abosulte version of <(DEPTH).
|
||||||
|
['OS!="win"', {
|
||||||
|
'source_root': '<!(cd <(DEPTH) && pwd -P)',
|
||||||
|
}], # OS!="win"
|
||||||
|
|
||||||
# Set default compiler flags depending on ARM version.
|
# Set default compiler flags depending on ARM version.
|
||||||
['arm_version==6', {
|
['arm_version==6', {
|
||||||
'arm_arch%': 'armv6',
|
'arm_arch%': 'armv6',
|
||||||
|
|
Loading…
Reference in a new issue