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

Side by Side Diff: android_webview/android_webview.gyp

Issue 335943002: [Android] Composited selection handle rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@input_native_handles_final
Patch Set: Update android_webview.gyp Created 6 years, 5 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 | « no previous file | content/browser/android/browser_jni_registrar.cc » ('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 2009 The Chromium Authors. All rights reserved. 1 # Copyright 2009 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'libwebviewchromium', 10 'target_name': 'libwebviewchromium',
11 'type': 'shared_library', 11 'type': 'shared_library',
12 'android_unmangled_name': 1, 12 'android_unmangled_name': 1,
13 'dependencies': [ 13 'dependencies': [
14 'android_webview_common', 14 'android_webview_common',
15 ], 15 ],
16 'conditions': [ 16 'conditions': [
17 # Avoid clashes between the versions of this library built with 17 # Avoid clashes between the versions of this library built with
18 # android_webview_build==1 by using a different name prefix. 18 # android_webview_build==1 by using a different name prefix.
19 [ 'android_webview_build==0', { 19 [ 'android_webview_build==0', {
20 'product_prefix': 'libstandalone', 20 'product_prefix': 'libstandalone',
21 }], 21 }],
22 [ 'android_webview_build==1', { 22 [ 'android_webview_build==1', {
23 # When building inside the android tree we also need to depend on all 23 # When building inside the android tree we also need to depend on all
24 # the java sources generated from templates which will be needed by 24 # the java sources generated from templates which will be needed by
25 # android_webview_java in android_webview/Android.mk. 25 # android_webview_java in android_webview/Android.mk.
boliu 2014/07/18 23:13:31 Need to update Android.mk file. Just copy the same
jdduke (slow) 2014/07/18 23:21:32 Ah, yeah I was confused, looks like it moved to ja
26 'dependencies': [ 26 'dependencies': [
27 '../base/base.gyp:base_java_application_state', 27 '../base/base.gyp:base_java_application_state',
28 '../base/base.gyp:base_java_memory_pressure_level_list', 28 '../base/base.gyp:base_java_memory_pressure_level_list',
29 '../content/content.gyp:content_gamepad_mapping', 29 '../content/content.gyp:content_gamepad_mapping',
30 '../content/content.gyp:gesture_event_type_java', 30 '../content/content.gyp:gesture_event_type_java',
31 '../content/content.gyp:page_transition_types_java', 31 '../content/content.gyp:page_transition_types_java',
32 '../content/content.gyp:popup_item_type_java', 32 '../content/content.gyp:popup_item_type_java',
33 '../content/content.gyp:result_codes_java', 33 '../content/content.gyp:result_codes_java',
34 '../content/content.gyp:screen_orientation_values_java', 34 '../content/content.gyp:screen_orientation_values_java',
35 '../content/content.gyp:selection_event_type_java',
35 '../content/content.gyp:speech_recognition_error_java', 36 '../content/content.gyp:speech_recognition_error_java',
36 '../media/media.gyp:media_android_imageformat_list', 37 '../media/media.gyp:media_android_imageformat_list',
37 '../net/net.gyp:cert_verify_status_android_java', 38 '../net/net.gyp:cert_verify_status_android_java',
38 '../net/net.gyp:certificate_mime_types_java', 39 '../net/net.gyp:certificate_mime_types_java',
39 '../net/net.gyp:net_errors_java', 40 '../net/net.gyp:net_errors_java',
40 '../net/net.gyp:private_key_types_java', 41 '../net/net.gyp:private_key_types_java',
41 '../ui/android/ui_android.gyp:bitmap_format_java', 42 '../ui/android/ui_android.gyp:bitmap_format_java',
42 '../ui/android/ui_android.gyp:window_open_disposition_java', 43 '../ui/android/ui_android.gyp:window_open_disposition_java',
43 ], 44 ],
44 }], 45 }],
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 '../content/content.gyp:content_strings_grd', 299 '../content/content.gyp:content_strings_grd',
299 '../ui/android/ui_android.gyp:ui_strings_grd', 300 '../ui/android/ui_android.gyp:ui_strings_grd',
300 'android_webview_jarjar_ui_resources', 301 'android_webview_jarjar_ui_resources',
301 'android_webview_jarjar_content_resources' 302 'android_webview_jarjar_content_resources'
302 ], 303 ],
303 }, 304 },
304 ], 305 ],
305 }], 306 }],
306 ], 307 ],
307 } 308 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/android/browser_jni_registrar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698