| 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 1832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1843 # Determines whether we should optimize JNI generation at the cost of | 1843 # Determines whether we should optimize JNI generation at the cost of |
| 1844 # breaking assumptions in the build system that when inputs have changed | 1844 # breaking assumptions in the build system that when inputs have changed |
| 1845 # the outputs should always change as well. This is meant purely for | 1845 # the outputs should always change as well. This is meant purely for |
| 1846 # developer builds, to avoid spurious re-linking of native files. | 1846 # developer builds, to avoid spurious re-linking of native files. |
| 1847 'optimize_jni_generation%': '<(optimize_jni_generation)', | 1847 'optimize_jni_generation%': '<(optimize_jni_generation)', |
| 1848 | 1848 |
| 1849 # Use OpenSSL's struct X509 to represent certificates. | 1849 # Use OpenSSL's struct X509 to represent certificates. |
| 1850 'use_openssl_certs%': 1, | 1850 'use_openssl_certs%': 1, |
| 1851 | 1851 |
| 1852 'proprietary_codecs%': '<(proprietary_codecs)', | 1852 'proprietary_codecs%': '<(proprietary_codecs)', |
| 1853 'safe_browsing%': 3, | 1853 |
| 1854 # safe_browsing defaults to 2 for public builds and is switched to 3 in |
| 1855 # //clank/supplement.gypi since mode 3 requires an internal API. |
| 1856 'safe_browsing%': 2, |
| 1857 |
| 1854 'enable_web_speech%': 0, | 1858 'enable_web_speech%': 0, |
| 1855 'java_bridge%': 1, | 1859 'java_bridge%': 1, |
| 1856 'use_allocator%': 'none', | 1860 'use_allocator%': 'none', |
| 1857 | 1861 |
| 1858 # Disable Native Client. | 1862 # Disable Native Client. |
| 1859 'disable_nacl%': 1, | 1863 'disable_nacl%': 1, |
| 1860 | 1864 |
| 1861 # Android does not support background apps. | 1865 # Android does not support background apps. |
| 1862 'enable_background%': 0, | 1866 'enable_background%': 0, |
| 1863 | 1867 |
| (...skipping 4469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6333 # settings in target dicts. SYMROOT is a special case, because many other | 6337 # settings in target dicts. SYMROOT is a special case, because many other |
| 6334 # Xcode variables depend on it, including variables such as | 6338 # Xcode variables depend on it, including variables such as |
| 6335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6339 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6336 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6340 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6337 # files to appear (when present) in the UI as actual files and not red | 6341 # files to appear (when present) in the UI as actual files and not red |
| 6338 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6342 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6339 # and therefore SYMROOT, needs to be set at the project level. | 6343 # and therefore SYMROOT, needs to be set at the project level. |
| 6340 'SYMROOT': '<(DEPTH)/xcodebuild', | 6344 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6341 }, | 6345 }, |
| 6342 } | 6346 } |
| OLD | NEW |