| 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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 | 922 |
| 923 # Native Client is enabled by default. | 923 # Native Client is enabled by default. |
| 924 'disable_nacl%': 0, | 924 'disable_nacl%': 0, |
| 925 | 925 |
| 926 # Whether to build full debug version for Debug configuration on Android. | 926 # Whether to build full debug version for Debug configuration on Android. |
| 927 # Compared to full debug version, the default Debug configuration on Android | 927 # Compared to full debug version, the default Debug configuration on Android |
| 928 # has no full v8 debug, has size optimization and linker gc section, so that | 928 # has no full v8 debug, has size optimization and linker gc section, so that |
| 929 # we can build a debug version with acceptable size and performance. | 929 # we can build a debug version with acceptable size and performance. |
| 930 'android_full_debug%': 0, | 930 'android_full_debug%': 0, |
| 931 | 931 |
| 932 # Sets the default version name and code for Android app, by default we |
| 933 # do a developer build. |
| 934 'android_app_version_name%': 'Developer Build', |
| 935 'android_app_version_code%': 0, |
| 936 |
| 932 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', | 937 'sas_dll_exists': '<!(python <(DEPTH)/build/dir_exists.py <(sas_dll_path))', |
| 933 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', | 938 'wix_exists': '<!(python <(DEPTH)/build/dir_exists.py <(wix_path))', |
| 934 | 939 |
| 935 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', | 940 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', |
| 936 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', | 941 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', |
| 937 | 942 |
| 938 'conditions': [ | 943 'conditions': [ |
| 939 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa
ult_path))"=="True"', { | 944 ['OS=="win" and "<!(python <(DEPTH)/build/dir_exists.py <(windows_sdk_defa
ult_path))"=="True"', { |
| 940 'windows_sdk_path%': '<(windows_sdk_default_path)', | 945 'windows_sdk_path%': '<(windows_sdk_default_path)', |
| 941 }, { | 946 }, { |
| (...skipping 2566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3508 # settings in target dicts. SYMROOT is a special case, because many other | 3513 # settings in target dicts. SYMROOT is a special case, because many other |
| 3509 # Xcode variables depend on it, including variables such as | 3514 # Xcode variables depend on it, including variables such as |
| 3510 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3515 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3511 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3516 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3512 # files to appear (when present) in the UI as actual files and not red | 3517 # files to appear (when present) in the UI as actual files and not red |
| 3513 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3518 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3514 # and therefore SYMROOT, needs to be set at the project level. | 3519 # and therefore SYMROOT, needs to be set at the project level. |
| 3515 'SYMROOT': '<(DEPTH)/xcodebuild', | 3520 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3516 }, | 3521 }, |
| 3517 } | 3522 } |
| OLD | NEW |