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 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1023 }, { | 1023 }, { |
1024 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0', | 1024 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0', |
1025 }], | 1025 }], |
1026 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa
ult_path))"=="True"', { | 1026 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa
ult_path))"=="True"', { |
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. |
| 1034 # TODO(jschuh): crbug.com/177664 Investigate Win64 pyauto build. |
| 1035 'python_arch%': 'ia32', |
1033 }], | 1036 }], |
1034 # If use_official_google_api_keys is already set (to 0 or 1), we | 1037 # If use_official_google_api_keys is already set (to 0 or 1), we |
1035 # do none of the implicit checking. If it is set to 1 and the | 1038 # do none of the implicit checking. If it is set to 1 and the |
1036 # internal keys file is missing, the build will fail at compile | 1039 # internal keys file is missing, the build will fail at compile |
1037 # time. If it is set to 0 and keys are not provided by other | 1040 # time. If it is set to 0 and keys are not provided by other |
1038 # means, a warning will be printed at compile time. | 1041 # means, a warning will be printed at compile time. |
1039 ['use_official_google_api_keys==2', { | 1042 ['use_official_google_api_keys==2', { |
1040 'use_official_google_api_keys%': | 1043 'use_official_google_api_keys%': |
1041 '<!(python <(DEPTH)/google_apis/build/check_internal.py <(DEPTH)/goo
gle_apis/internal/google_chrome_api_keys.h)', | 1044 '<!(python <(DEPTH)/google_apis/build/check_internal.py <(DEPTH)/goo
gle_apis/internal/google_chrome_api_keys.h)', |
1042 }], | 1045 }], |
(...skipping 3058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4101 # settings in target dicts. SYMROOT is a special case, because many other | 4104 # settings in target dicts. SYMROOT is a special case, because many other |
4102 # Xcode variables depend on it, including variables such as | 4105 # Xcode variables depend on it, including variables such as |
4103 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4106 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4104 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4107 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4105 # files to appear (when present) in the UI as actual files and not red | 4108 # files to appear (when present) in the UI as actual files and not red |
4106 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4109 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4107 # and therefore SYMROOT, needs to be set at the project level. | 4110 # and therefore SYMROOT, needs to be set at the project level. |
4108 'SYMROOT': '<(DEPTH)/xcodebuild', | 4111 'SYMROOT': '<(DEPTH)/xcodebuild', |
4109 }, | 4112 }, |
4110 } | 4113 } |
OLD | NEW |