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