OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1027 'directx_sdk_path%': '<(directx_sdk_default_path)', | 1027 'directx_sdk_path%': '<(directx_sdk_default_path)', |
1028 }, { | 1028 }, { |
1029 'directx_sdk_path%': '$(DXSDK_DIR)', | 1029 'directx_sdk_path%': '$(DXSDK_DIR)', |
1030 }], | 1030 }], |
1031 ['OS=="win"', { | 1031 ['OS=="win"', { |
1032 'windows_driver_kit_path%': '$(WDK_DIR)', | 1032 'windows_driver_kit_path%': '$(WDK_DIR)', |
1033 # Set the python arch to prevent conflicts with pyauto on Win64 build. | 1033 # Set the python arch to prevent conflicts with pyauto on Win64 build. |
1034 # TODO(jschuh): crbug.com/177664 Investigate Win64 pyauto build. | 1034 # TODO(jschuh): crbug.com/177664 Investigate Win64 pyauto build. |
1035 'python_arch%': 'ia32', | 1035 'python_arch%': 'ia32', |
1036 }], | 1036 }], |
1037 # If use_official_google_api_keys is already set (to 0 or 1), we | |
1038 # do none of the implicit checking. If it is set to 1 and the | |
1039 # internal keys file is missing, the build will fail at compile | |
1040 # time. If it is set to 0 and keys are not provided by other | |
1041 # means, a warning will be printed at compile time. | |
1042 ['use_official_google_api_keys==2', { | |
1043 'use_official_google_api_keys%': | |
1044 '<!(python <(DEPTH)/google_apis/build/check_internal.py <(DEPTH)/goo
gle_apis/internal/google_chrome_api_keys.h)', | |
1045 }], | |
1046 ['os_posix==1 and OS!="mac" and OS!="ios"', { | 1037 ['os_posix==1 and OS!="mac" and OS!="ios"', { |
1047 # Figure out the python architecture to decide if we build pyauto. | 1038 # Figure out the python architecture to decide if we build pyauto. |
1048 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/<
(system_libdir)/libpython<(python_ver).so.1.0)', | 1039 'python_arch%': '<!(<(DEPTH)/build/linux/python_arch.sh <(sysroot)/usr/<
(system_libdir)/libpython<(python_ver).so.1.0)', |
1049 'conditions': [ | 1040 'conditions': [ |
1050 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so | 1041 # TODO(glider): set clang to 1 earlier for ASan and TSan builds so |
1051 # that it takes effect here. | 1042 # that it takes effect here. |
1052 ['clang==0 and asan==0 and tsan==0', { | 1043 ['clang==0 and asan==0 and tsan==0', { |
1053 # This will set gcc_version to XY if you are running gcc X.Y.*. | 1044 # This will set gcc_version to XY if you are running gcc X.Y.*. |
1054 # This is used to tweak build flags for gcc 4.5. | 1045 # This is used to tweak build flags for gcc 4.5. |
1055 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', | 1046 'gcc_version%': '<!(python <(DEPTH)/build/compiler_version.py)', |
(...skipping 3044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4100 # settings in target dicts. SYMROOT is a special case, because many other | 4091 # settings in target dicts. SYMROOT is a special case, because many other |
4101 # Xcode variables depend on it, including variables such as | 4092 # Xcode variables depend on it, including variables such as |
4102 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4093 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4103 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4094 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4104 # files to appear (when present) in the UI as actual files and not red | 4095 # files to appear (when present) in the UI as actual files and not red |
4105 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4096 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4106 # and therefore SYMROOT, needs to be set at the project level. | 4097 # and therefore SYMROOT, needs to be set at the project level. |
4107 'SYMROOT': '<(DEPTH)/xcodebuild', | 4098 'SYMROOT': '<(DEPTH)/xcodebuild', |
4108 }, | 4099 }, |
4109 } | 4100 } |
OLD | NEW |