Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: build/common.gypi

Issue 534603002: android_webview: stop using system expat. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « android_webview/tools/known_issues.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1772 matching lines...) Expand 10 before | Expand all | Expand 10 after
1783 1783
1784 'p2p_apis%' : 0, 1784 'p2p_apis%' : 0,
1785 1785
1786 'gtest_target_type%': 'shared_library', 1786 'gtest_target_type%': 'shared_library',
1787 1787
1788 # Uses system APIs for decoding audio and video. 1788 # Uses system APIs for decoding audio and video.
1789 'use_libffmpeg%': '0', 1789 'use_libffmpeg%': '0',
1790 1790
1791 # When building as part of the Android system, use system libraries 1791 # When building as part of the Android system, use system libraries
1792 # where possible to reduce ROM size. 1792 # where possible to reduce ROM size.
1793 # TODO(steveblock): Investigate using the system version of sqlite.
1794 'use_system_sqlite%': 0, # '<(android_webview_build)',
1795 'use_system_expat%': '<(android_webview_build)',
1796 'use_system_icu%': '<(android_webview_build)', 1793 'use_system_icu%': '<(android_webview_build)',
1797 'use_system_stlport%': '<(android_webview_build)', 1794 'use_system_stlport%': '<(android_webview_build)',
1798 1795
1799 # Copy it out one scope. 1796 # Copy it out one scope.
1800 'android_webview_build%': '<(android_webview_build)', 1797 'android_webview_build%': '<(android_webview_build)',
1801 1798
1802 # Default android linker script for shared library exports. 1799 # Default android linker script for shared library exports.
1803 'android_linker_script%': '<(SHARED_INTERMEDIATE_DIR)/android_exports.ls t', 1800 'android_linker_script%': '<(SHARED_INTERMEDIATE_DIR)/android_exports.ls t',
1804 }], # OS=="android" 1801 }], # OS=="android"
1805 ['embedded==1', { 1802 ['embedded==1', {
(...skipping 3960 matching lines...) Expand 10 before | Expand all | Expand 10 after
5766 # settings in target dicts. SYMROOT is a special case, because many other 5763 # settings in target dicts. SYMROOT is a special case, because many other
5767 # Xcode variables depend on it, including variables such as 5764 # Xcode variables depend on it, including variables such as
5768 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5765 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5769 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5766 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5770 # files to appear (when present) in the UI as actual files and not red 5767 # files to appear (when present) in the UI as actual files and not red
5771 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5768 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5772 # and therefore SYMROOT, needs to be set at the project level. 5769 # and therefore SYMROOT, needs to be set at the project level.
5773 'SYMROOT': '<(DEPTH)/xcodebuild', 5770 'SYMROOT': '<(DEPTH)/xcodebuild',
5774 }, 5771 },
5775 } 5772 }
OLDNEW
« no previous file with comments | « android_webview/tools/known_issues.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698