| 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 1836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1847 'use_playready%': 0, | 1847 'use_playready%': 0, |
| 1848 'conditions': [ | 1848 'conditions': [ |
| 1849 ['target_arch=="arm"', { | 1849 ['target_arch=="arm"', { |
| 1850 'arm_arch%': '', | 1850 'arm_arch%': '', |
| 1851 'arm_tune%': 'cortex-a9', | 1851 'arm_tune%': 'cortex-a9', |
| 1852 'arm_thumb%': 1, | 1852 'arm_thumb%': 1, |
| 1853 'video_hole%': 1, | 1853 'video_hole%': 1, |
| 1854 }], | 1854 }], |
| 1855 ], | 1855 ], |
| 1856 }], | 1856 }], |
| 1857 ['android_webview_build==1', { | |
| 1858 # When building the WebView in the Android tree, jarjar will remap all | |
| 1859 # the class names, so the JNI generator needs to know this. | |
| 1860 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt'
, | |
| 1861 }], | |
| 1862 ['OS=="linux" and target_arch!="mipsel"', { | 1857 ['OS=="linux" and target_arch!="mipsel"', { |
| 1863 'clang%': 1, | 1858 'clang%': 1, |
| 1864 }], # OS=="mac" | 1859 }], # OS=="mac" |
| 1865 ['OS=="mac"', { | 1860 ['OS=="mac"', { |
| 1866 'conditions': [ | 1861 'conditions': [ |
| 1867 # All Chrome builds have breakpad symbols, but only process the | 1862 # All Chrome builds have breakpad symbols, but only process the |
| 1868 # symbols from official builds. | 1863 # symbols from official builds. |
| 1869 ['(branding=="Chrome" and buildtype=="Official")', { | 1864 ['(branding=="Chrome" and buildtype=="Official")', { |
| 1870 'mac_strip_release%': 1, | 1865 'mac_strip_release%': 1, |
| 1871 }], | 1866 }], |
| (...skipping 4232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6104 # settings in target dicts. SYMROOT is a special case, because many other | 6099 # settings in target dicts. SYMROOT is a special case, because many other |
| 6105 # Xcode variables depend on it, including variables such as | 6100 # Xcode variables depend on it, including variables such as |
| 6106 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6101 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6107 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6102 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6108 # files to appear (when present) in the UI as actual files and not red | 6103 # files to appear (when present) in the UI as actual files and not red |
| 6109 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6104 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6110 # and therefore SYMROOT, needs to be set at the project level. | 6105 # and therefore SYMROOT, needs to be set at the project level. |
| 6111 'SYMROOT': '<(DEPTH)/xcodebuild', | 6106 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6112 }, | 6107 }, |
| 6113 } | 6108 } |
| OLD | NEW |