Don't define source_root on Windows

This commit is contained in:
Cheng Zhao 2015-07-03 09:46:35 +08:00
parent 33109a2718
commit 8de9c75caf

View file

@ -1,8 +1,5 @@
{
'variables': {
# The abosulte version of <(DEPTH).
'source_root': '<!(cd <(DEPTH) && pwd -P)',
# Clang stuff.
'make_clang_dir%': 'vendor/llvm-build/Release+Asserts',
# Set this to true when building with Clang.
@ -33,6 +30,11 @@
'clang%': 0,
}], # 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.
['arm_version==6', {
'arm_arch%': 'armv6',