| 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 1765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1776 'enable_mpeg2ts_stream_parser%': 1, | 1776 'enable_mpeg2ts_stream_parser%': 1, |
| 1777 'video_hole%': 1, | 1777 'video_hole%': 1, |
| 1778 }], | 1778 }], |
| 1779 ], | 1779 ], |
| 1780 }], | 1780 }], |
| 1781 ['android_webview_build==1 or android_webview_telemetry_build==1', { | 1781 ['android_webview_build==1 or android_webview_telemetry_build==1', { |
| 1782 # When building the WebView in the Android tree, jarjar will remap all | 1782 # When building the WebView in the Android tree, jarjar will remap all |
| 1783 # the class names, so the JNI generator needs to know this. | 1783 # the class names, so the JNI generator needs to know this. |
| 1784 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt'
, | 1784 'jni_generator_jarjar_file': '../android_webview/build/jarjar-rules.txt'
, |
| 1785 }], | 1785 }], |
| 1786 ['OS=="linux"', { | 1786 ['OS=="linux" and target_arch!="mipsel"', { |
| 1787 # TODO(thakis): This is here to measure perf for a while. | 1787 # TODO(thakis): This is here to measure perf for a while. |
| 1788 'clang%': 1, | 1788 'clang%': 1, |
| 1789 }], # OS=="mac" | 1789 }], # OS=="mac" |
| 1790 ['OS=="mac"', { | 1790 ['OS=="mac"', { |
| 1791 'conditions': [ | 1791 'conditions': [ |
| 1792 # All Chrome builds have breakpad symbols, but only process the | 1792 # All Chrome builds have breakpad symbols, but only process the |
| 1793 # symbols from official builds. | 1793 # symbols from official builds. |
| 1794 ['(branding=="Chrome" and buildtype=="Official")', { | 1794 ['(branding=="Chrome" and buildtype=="Official")', { |
| 1795 'mac_strip_release%': 1, | 1795 'mac_strip_release%': 1, |
| 1796 }], | 1796 }], |
| (...skipping 3825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5622 # settings in target dicts. SYMROOT is a special case, because many other | 5622 # settings in target dicts. SYMROOT is a special case, because many other |
| 5623 # Xcode variables depend on it, including variables such as | 5623 # Xcode variables depend on it, including variables such as |
| 5624 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5624 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5625 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5625 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5626 # files to appear (when present) in the UI as actual files and not red | 5626 # files to appear (when present) in the UI as actual files and not red |
| 5627 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5627 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5628 # and therefore SYMROOT, needs to be set at the project level. | 5628 # and therefore SYMROOT, needs to be set at the project level. |
| 5629 'SYMROOT': '<(DEPTH)/xcodebuild', | 5629 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5630 }, | 5630 }, |
| 5631 } | 5631 } |
| OLD | NEW |