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 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 # do a developer build. | 943 # do a developer build. |
944 'android_app_version_name%': 'Developer Build', | 944 'android_app_version_name%': 'Developer Build', |
945 'android_app_version_code%': 0, | 945 'android_app_version_code%': 0, |
946 | 946 |
947 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', | 947 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', |
948 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', | 948 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', |
949 | 949 |
950 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', | 950 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', |
951 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', | 951 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', |
952 | 952 |
953 # Whether rlz is enabled. | 953 # Whether we are using the rlz library or not. Platforms like Android send |
| 954 # rlz codes for searches but do not use the library. |
954 'enable_rlz%': 0, | 955 'enable_rlz%': 0, |
955 | 956 |
956 'conditions': [ | 957 'conditions': [ |
957 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa
ult_path))"=="True"', { | 958 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa
ult_path))"=="True"', { |
958 'windows_sdk_path%': '<(windows_sdk_default_path)', | 959 'windows_sdk_path%': '<(windows_sdk_default_path)', |
959 }, { | 960 }, { |
960 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0', | 961 'windows_sdk_path%': 'C:/Program Files (x86)/Windows Kits/8.0', |
961 }], | 962 }], |
962 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa
ult_path))"=="True"', { | 963 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(directx_sdk_defa
ult_path))"=="True"', { |
963 'directx_sdk_path%': '<(directx_sdk_default_path)', | 964 'directx_sdk_path%': '<(directx_sdk_default_path)', |
(...skipping 2945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3909 # settings in target dicts. SYMROOT is a special case, because many other | 3910 # settings in target dicts. SYMROOT is a special case, because many other |
3910 # Xcode variables depend on it, including variables such as | 3911 # Xcode variables depend on it, including variables such as |
3911 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3912 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3912 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3913 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3913 # files to appear (when present) in the UI as actual files and not red | 3914 # files to appear (when present) in the UI as actual files and not red |
3914 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3915 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3915 # and therefore SYMROOT, needs to be set at the project level. | 3916 # and therefore SYMROOT, needs to be set at the project level. |
3916 'SYMROOT': '<(DEPTH)/xcodebuild', | 3917 'SYMROOT': '<(DEPTH)/xcodebuild', |
3917 }, | 3918 }, |
3918 } | 3919 } |
OLD | NEW |