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

Side by Side Diff: android_webview/libwebviewchromium.gypi

Issue 571953002: android_webview: Build against NDK prebuilts, not system libraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix library link order on arm64 Created 6 years, 2 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 | « DEPS ('k') | build/common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'type': 'shared_library', 5 'type': 'shared_library',
6 'android_unmangled_name': 1, 6 'android_unmangled_name': 1,
7 'dependencies': [ 7 'dependencies': [
8 'android_webview_common', 8 'android_webview_common',
9 ], 9 ],
10 'conditions': [ 10 'conditions': [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 # When not using the system skia there are linker warnings about 42 # When not using the system skia there are linker warnings about
43 # overriden hidden symbols which there's no easy way to eliminate; 43 # overriden hidden symbols which there's no easy way to eliminate;
44 # disable them. http://crbug.com/157326 44 # disable them. http://crbug.com/157326
45 'ldflags': [ 45 'ldflags': [
46 '-Wl,--no-fatal-warnings', 46 '-Wl,--no-fatal-warnings',
47 ], 47 ],
48 'ldflags!': [ 48 'ldflags!': [
49 '-Wl,--fatal-warnings', 49 '-Wl,--fatal-warnings',
50 ], 50 ],
51 }], 51 }],
52 ['android_webview_build==1 and use_system_stlport==1', {
53 # ICU requires RTTI, which is not present in the system's stlport, so
54 # we have to include gabi++. We can't include it in icu.gyp because
55 # link_settings cannot be used inside target_conditions. This will be
56 # removed once we stop using the system stlport.
57 # http://crbug.com/409851
58 'libraries': [
59 '-lgabi++',
60 ],
61 }],
62 ], 52 ],
63 'sources': [ 53 'sources': [
64 'lib/main/webview_entry_point.cc', 54 'lib/main/webview_entry_point.cc',
65 ], 55 ],
66 } 56 }
67 57
OLDNEW
« no previous file with comments | « DEPS ('k') | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698