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

Side by Side Diff: android_webview/libwebviewchromium.gypi

Issue 639423005: Remove use_system_skia and skia_system.gypi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove another instance of use_system_skia Created 6 years, 1 month 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 | « no previous file | 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 21 matching lines...) Expand all
32 '../ui/android/ui_android.gyp:bitmap_format_java', 32 '../ui/android/ui_android.gyp:bitmap_format_java',
33 '../ui/android/ui_android.gyp:page_transition_types_java', 33 '../ui/android/ui_android.gyp:page_transition_types_java',
34 '../ui/android/ui_android.gyp:window_open_disposition_java', 34 '../ui/android/ui_android.gyp:window_open_disposition_java',
35 ], 35 ],
36 # Enable feedback-directed optimisation for the library when building in 36 # Enable feedback-directed optimisation for the library when building in
37 # android. 37 # android.
38 'aosp_build_settings': { 38 'aosp_build_settings': {
39 'LOCAL_FDO_SUPPORT': 'true', 39 'LOCAL_FDO_SUPPORT': 'true',
40 }, 40 },
41 }], 41 }],
42 [ 'android_webview_build==1 and use_system_skia==0', { 42 [ 'android_webview_build==1', {
43 # When not using the system skia there are linker warnings about 43 # When not using the system skia there are linker warnings about
44 # overriden hidden symbols which there's no easy way to eliminate; 44 # overriden hidden symbols which there's no easy way to eliminate;
45 # disable them. http://crbug.com/157326 45 # disable them. http://crbug.com/157326
46 'ldflags': [ 46 'ldflags': [
47 '-Wl,--no-fatal-warnings', 47 '-Wl,--no-fatal-warnings',
48 ], 48 ],
49 'ldflags!': [ 49 'ldflags!': [
50 '-Wl,--fatal-warnings', 50 '-Wl,--fatal-warnings',
51 ], 51 ],
52 }], 52 }],
53 ], 53 ],
54 'sources': [ 54 'sources': [
55 'lib/main/webview_entry_point.cc', 55 'lib/main/webview_entry_point.cc',
56 ], 56 ],
57 } 57 }
58 58
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698