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

Side by Side Diff: android_webview/android_webview.gyp

Issue 133943002: Gamepad API support for chrome on android (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 6 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
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.
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:gesture_event_type_java', 30 '../content/content.gyp:gesture_event_type_java',
30 '../content/content.gyp:page_transition_types_java', 31 '../content/content.gyp:page_transition_types_java',
31 '../content/content.gyp:popup_item_type_java', 32 '../content/content.gyp:popup_item_type_java',
32 '../content/content.gyp:result_codes_java', 33 '../content/content.gyp:result_codes_java',
33 '../content/content.gyp:screen_orientation_values_java', 34 '../content/content.gyp:screen_orientation_values_java',
34 '../content/content.gyp:speech_recognition_error_java', 35 '../content/content.gyp:speech_recognition_error_java',
35 '../media/media.gyp:media_android_imageformat_list', 36 '../media/media.gyp:media_android_imageformat_list',
36 '../net/net.gyp:cert_verify_status_android_java', 37 '../net/net.gyp:cert_verify_status_android_java',
37 '../net/net.gyp:certificate_mime_types_java', 38 '../net/net.gyp:certificate_mime_types_java',
38 '../net/net.gyp:net_errors_java', 39 '../net/net.gyp:net_errors_java',
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 'android_unmangled_name': 1, 273 'android_unmangled_name': 1,
273 'dependencies': [ 274 'dependencies': [
274 '../content/content.gyp:content_strings_grd', 275 '../content/content.gyp:content_strings_grd',
275 '../ui/android/ui_android.gyp:ui_strings_grd', 276 '../ui/android/ui_android.gyp:ui_strings_grd',
276 ], 277 ],
277 }, 278 },
278 ], 279 ],
279 }], 280 }],
280 ], 281 ],
281 } 282 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698