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 1596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1607 'use_system_stlport%': '<(android_webview_build)', | 1607 'use_system_stlport%': '<(android_webview_build)', |
1608 | 1608 |
1609 # Copy it out one scope. | 1609 # Copy it out one scope. |
1610 'android_webview_build%': '<(android_webview_build)', | 1610 'android_webview_build%': '<(android_webview_build)', |
1611 }], # OS=="android" | 1611 }], # OS=="android" |
1612 ['android_webview_build==1', { | 1612 ['android_webview_build==1', { |
1613 # When building the WebView in the Android tree, jarjar will remap all | 1613 # When building the WebView in the Android tree, jarjar will remap all |
1614 # the class names, so the JNI generator needs to know this. | 1614 # the class names, so the JNI generator needs to know this. |
1615 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt'
, | 1615 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt'
, |
1616 }], | 1616 }], |
| 1617 ['OS=="linux"', { |
| 1618 # TODO(thakis): This is here to measure perf for a while. |
| 1619 'clang%': 1, |
| 1620 }], # OS=="mac" |
1617 ['OS=="mac"', { | 1621 ['OS=="mac"', { |
1618 'conditions': [ | 1622 'conditions': [ |
1619 # All Chrome builds have breakpad symbols, but only process the | 1623 # All Chrome builds have breakpad symbols, but only process the |
1620 # symbols from official builds. | 1624 # symbols from official builds. |
1621 ['(branding=="Chrome" and buildtype=="Official")', { | 1625 ['(branding=="Chrome" and buildtype=="Official")', { |
1622 'mac_strip_release%': 1, | 1626 'mac_strip_release%': 1, |
1623 }], | 1627 }], |
1624 ], | 1628 ], |
1625 }], # OS=="mac" | 1629 }], # OS=="mac" |
1626 ['OS=="mac" or OS=="ios"', { | 1630 ['OS=="mac" or OS=="ios"', { |
(...skipping 3589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5216 # settings in target dicts. SYMROOT is a special case, because many other | 5220 # settings in target dicts. SYMROOT is a special case, because many other |
5217 # Xcode variables depend on it, including variables such as | 5221 # Xcode variables depend on it, including variables such as |
5218 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5222 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5219 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5223 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5220 # files to appear (when present) in the UI as actual files and not red | 5224 # files to appear (when present) in the UI as actual files and not red |
5221 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5225 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5222 # and therefore SYMROOT, needs to be set at the project level. | 5226 # and therefore SYMROOT, needs to be set at the project level. |
5223 'SYMROOT': '<(DEPTH)/xcodebuild', | 5227 'SYMROOT': '<(DEPTH)/xcodebuild', |
5224 }, | 5228 }, |
5225 } | 5229 } |
OLD | NEW |