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 1779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1790 | 1790 |
1791 'p2p_apis%' : 0, | 1791 'p2p_apis%' : 0, |
1792 | 1792 |
1793 'gtest_target_type%': 'shared_library', | 1793 'gtest_target_type%': 'shared_library', |
1794 | 1794 |
1795 # Uses system APIs for decoding audio and video. | 1795 # Uses system APIs for decoding audio and video. |
1796 'use_libffmpeg%': '0', | 1796 'use_libffmpeg%': '0', |
1797 | 1797 |
1798 # When building as part of the Android system, use system libraries | 1798 # When building as part of the Android system, use system libraries |
1799 # where possible to reduce ROM size. | 1799 # where possible to reduce ROM size. |
1800 'use_system_icu%': '<(android_webview_build)', | |
1801 'use_system_stlport%': '<(android_webview_build)', | 1800 'use_system_stlport%': '<(android_webview_build)', |
1802 | 1801 |
1803 # Copy it out one scope. | 1802 # Copy it out one scope. |
1804 'android_webview_build%': '<(android_webview_build)', | 1803 'android_webview_build%': '<(android_webview_build)', |
1805 | 1804 |
1806 # Default android linker script for shared library exports. | 1805 # Default android linker script for shared library exports. |
1807 'android_linker_script%': '<(SHARED_INTERMEDIATE_DIR)/android_exports.ls
t', | 1806 'android_linker_script%': '<(SHARED_INTERMEDIATE_DIR)/android_exports.ls
t', |
1808 }], # OS=="android" | 1807 }], # OS=="android" |
1809 ['embedded==1', { | 1808 ['embedded==1', { |
1810 'use_system_fontconfig%': 0, | 1809 'use_system_fontconfig%': 0, |
(...skipping 3961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5772 # settings in target dicts. SYMROOT is a special case, because many other | 5771 # settings in target dicts. SYMROOT is a special case, because many other |
5773 # Xcode variables depend on it, including variables such as | 5772 # Xcode variables depend on it, including variables such as |
5774 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5773 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5775 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5774 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5776 # files to appear (when present) in the UI as actual files and not red | 5775 # files to appear (when present) in the UI as actual files and not red |
5777 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5776 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5778 # and therefore SYMROOT, needs to be set at the project level. | 5777 # and therefore SYMROOT, needs to be set at the project level. |
5779 'SYMROOT': '<(DEPTH)/xcodebuild', | 5778 'SYMROOT': '<(DEPTH)/xcodebuild', |
5780 }, | 5779 }, |
5781 } | 5780 } |
OLD | NEW |