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

Side by Side Diff: android_webview/libwebviewchromium.gypi

Issue 477903003: Make the WebView apk build in the Chrome tree (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change package_name Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'type': 'shared_library',
7 'android_unmangled_name': 1,
8 'dependencies': [
9 '../android_webview/android_webview.gyp:android_webview_common',
10 ],
11 'conditions': [
12 [ 'android_webview_build==1', {
13 # When building inside the android tree we also need to depend on all
14 # the java sources generated from templates which will be needed by
15 # android_webview_java in android_webview/java_library_common.mk.
16 'dependencies': [
17 '../base/base.gyp:base_java_application_state',
18 '../base/base.gyp:base_java_memory_pressure_level_list',
19 '../content/content.gyp:content_gamepad_mapping',
20 '../content/content.gyp:gesture_event_type_java',
21 '../content/content.gyp:page_transition_types_java',
22 '../content/content.gyp:popup_item_type_java',
23 '../content/content.gyp:result_codes_java',
24 '../content/content.gyp:screen_orientation_values_java',
25 '../content/content.gyp:selection_event_type_java',
26 '../content/content.gyp:speech_recognition_error_java',
27 '../media/media.gyp:media_android_imageformat_list',
28 '../net/net.gyp:cert_verify_status_android_java',
29 '../net/net.gyp:certificate_mime_types_java',
30 '../net/net.gyp:net_errors_java',
31 '../net/net.gyp:private_key_types_java',
32 '../ui/android/ui_android.gyp:bitmap_format_java',
33 '../ui/android/ui_android.gyp:window_open_disposition_java',
34 ],
35 }],
36 [ 'android_webview_build==1 and use_system_skia==0', {
37 # When not using the system skia there are linker warnings about
38 # overriden hidden symbols which there's no easy way to eliminate;
39 # disable them. http://crbug.com/157326
40 'ldflags': [
41 '-Wl,--no-fatal-warnings',
42 ],
43 'ldflags!': [
44 '-Wl,--fatal-warnings',
45 ],
46 }],
47 ],
48 'sources': [
49 'lib/main/webview_entry_point.cc',
50 ],
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698