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 1759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1770 'enable_mpeg2ts_stream_parser%': 1, | 1770 'enable_mpeg2ts_stream_parser%': 1, |
1771 'video_hole%': 1, | 1771 'video_hole%': 1, |
1772 }], | 1772 }], |
1773 ], | 1773 ], |
1774 }], | 1774 }], |
1775 ['android_webview_build==1', { | 1775 ['android_webview_build==1', { |
1776 # When building the WebView in the Android tree, jarjar will remap all | 1776 # When building the WebView in the Android tree, jarjar will remap all |
1777 # the class names, so the JNI generator needs to know this. | 1777 # the class names, so the JNI generator needs to know this. |
1778 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt'
, | 1778 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt'
, |
1779 }], | 1779 }], |
1780 ['OS=="linux"', { | |
1781 # TODO(thakis): This is here to measure perf for a while. | |
1782 'clang%': 1, | |
1783 }], # OS=="mac" | |
1784 ['OS=="mac"', { | 1780 ['OS=="mac"', { |
1785 'conditions': [ | 1781 'conditions': [ |
1786 # All Chrome builds have breakpad symbols, but only process the | 1782 # All Chrome builds have breakpad symbols, but only process the |
1787 # symbols from official builds. | 1783 # symbols from official builds. |
1788 ['(branding=="Chrome" and buildtype=="Official")', { | 1784 ['(branding=="Chrome" and buildtype=="Official")', { |
1789 'mac_strip_release%': 1, | 1785 'mac_strip_release%': 1, |
1790 }], | 1786 }], |
1791 ], | 1787 ], |
1792 }], # OS=="mac" | 1788 }], # OS=="mac" |
1793 ['OS=="mac" or OS=="ios"', { | 1789 ['OS=="mac" or OS=="ios"', { |
(...skipping 3810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5604 # settings in target dicts. SYMROOT is a special case, because many other | 5600 # settings in target dicts. SYMROOT is a special case, because many other |
5605 # Xcode variables depend on it, including variables such as | 5601 # Xcode variables depend on it, including variables such as |
5606 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5602 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5607 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5603 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5608 # files to appear (when present) in the UI as actual files and not red | 5604 # files to appear (when present) in the UI as actual files and not red |
5609 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5605 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5610 # and therefore SYMROOT, needs to be set at the project level. | 5606 # and therefore SYMROOT, needs to be set at the project level. |
5611 'SYMROOT': '<(DEPTH)/xcodebuild', | 5607 'SYMROOT': '<(DEPTH)/xcodebuild', |
5612 }, | 5608 }, |
5613 } | 5609 } |
OLD | NEW |