| 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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 'android_ndk_sysroot': '<(android_ndk_root)/platforms/android-9/arch-<
(target_arch)', | 859 'android_ndk_sysroot': '<(android_ndk_root)/platforms/android-9/arch-<
(target_arch)', |
| 860 'android_build_type%': '<(android_build_type)', | 860 'android_build_type%': '<(android_build_type)', |
| 861 'android_app_abi%': '<(android_app_abi)', | 861 'android_app_abi%': '<(android_app_abi)', |
| 862 }, | 862 }, |
| 863 'android_ndk_root%': '<(android_ndk_root)', | 863 'android_ndk_root%': '<(android_ndk_root)', |
| 864 'android_ndk_sysroot': '<(android_ndk_sysroot)', | 864 'android_ndk_sysroot': '<(android_ndk_sysroot)', |
| 865 'android_ndk_include': '<(android_ndk_sysroot)/usr/include', | 865 'android_ndk_include': '<(android_ndk_sysroot)/usr/include', |
| 866 'android_ndk_lib': '<(android_ndk_sysroot)/usr/lib', | 866 'android_ndk_lib': '<(android_ndk_sysroot)/usr/lib', |
| 867 'android_app_abi%': '<(android_app_abi)', | 867 'android_app_abi%': '<(android_app_abi)', |
| 868 | 868 |
| 869 # Provides an absolute path to PRODUCT_DIR (e.g. out/Release). An |
| 870 # example usage is specifying the output directory for Ant in the |
| 871 # Android build. |
| 872 'absolute_product_out': '`cd <(PRODUCT_DIR) && pwd -P`', |
| 873 |
| 869 # Uses Android's crash report system | 874 # Uses Android's crash report system |
| 870 'linux_breakpad%': 0, | 875 'linux_breakpad%': 0, |
| 871 | 876 |
| 872 # Always uses openssl. | 877 # Always uses openssl. |
| 873 'use_openssl%': 1, | 878 'use_openssl%': 1, |
| 874 | 879 |
| 875 'proprietary_codecs%': '<(proprietary_codecs)', | 880 'proprietary_codecs%': '<(proprietary_codecs)', |
| 876 'enable_task_manager%': 0, | 881 'enable_task_manager%': 0, |
| 877 'safe_browsing%': 0, | 882 'safe_browsing%': 0, |
| 878 'configuration_policy%': 0, | 883 'configuration_policy%': 0, |
| (...skipping 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3092 # settings in target dicts. SYMROOT is a special case, because many other | 3097 # settings in target dicts. SYMROOT is a special case, because many other |
| 3093 # Xcode variables depend on it, including variables such as | 3098 # Xcode variables depend on it, including variables such as |
| 3094 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3099 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3095 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3100 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3096 # files to appear (when present) in the UI as actual files and not red | 3101 # files to appear (when present) in the UI as actual files and not red |
| 3097 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3102 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3098 # and therefore SYMROOT, needs to be set at the project level. | 3103 # and therefore SYMROOT, needs to be set at the project level. |
| 3099 'SYMROOT': '<(DEPTH)/xcodebuild', | 3104 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3100 }, | 3105 }, |
| 3101 } | 3106 } |
| OLD | NEW |