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

Side by Side Diff: android_webview/android_webview.gyp

Issue 975253002: refactoring Android Webview JNI_OnLoad interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync Created 5 years, 9 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': 'android_webview_pak', 10 'target_name': 'android_webview_pak',
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 'crash_reporter/aw_microdump_crash_reporter.cc', 342 'crash_reporter/aw_microdump_crash_reporter.cc',
343 ], 343 ],
344 }, { # android_webview_build==1 344 }, { # android_webview_build==1
345 'sources': [ 345 'sources': [
346 'crash_reporter/aw_microdump_crash_reporter_disabled_in_android_buil ds.cc', 346 'crash_reporter/aw_microdump_crash_reporter_disabled_in_android_buil ds.cc',
347 ], 347 ],
348 }], 348 }],
349 ], 349 ],
350 }, 350 },
351 { 351 {
352 'target_name': 'android_webview',
Torne 2015/03/05 18:56:09 This target is unnecessary - it is exactly the sam
michaelbai 2015/03/05 19:28:52 Sounds good, I reverted this part
353 'type': 'none',
354 'dependencies': [
355 'android_webview_common',
356 ],
357 'conditions': [
358 ['android_webview_build==1', {
359 'dependencies': [
360 # When building inside the android tree we also need to depend on
361 # all the java sources generated from templates which will be
362 # needed by android_webview_java in
363 # android_webview/java_library_common.mk.
364 '../base/base.gyp:base_java_application_state',
365 '../base/base.gyp:base_java_library_load_from_apk_status_codes',
366 '../base/base.gyp:base_java_library_process_type',
367 '../base/base.gyp:base_java_memory_pressure_level',
368 '../content/content.gyp:console_message_level_java',
369 '../content/content.gyp:content_gamepad_mapping',
370 '../content/content.gyp:gesture_event_type_java',
371 '../content/content.gyp:invalidate_types_java',
372 '../content/content.gyp:navigation_controller_java',
373 '../content/content.gyp:popup_item_type_java',
374 '../content/content.gyp:result_codes_java',
375 '../content/content.gyp:screen_orientation_values_java',
376 '../content/content.gyp:speech_recognition_error_java',
377 '../content/content.gyp:top_controls_state_java',
378 '../media/media.gyp:media_android_imageformat',
379 '../net/net.gyp:cert_verify_status_android_java',
380 '../net/net.gyp:certificate_mime_types_java',
381 '../net/net.gyp:network_change_notifier_types_java',
382 '../net/net.gyp:net_errors_java',
383 '../net/net.gyp:private_key_types_java',
384 '../third_party/WebKit/public/blink_headers.gyp:web_input_event_java ',
385 '../third_party/WebKit/public/blink_headers.gyp:web_text_input_type' ,
386 '../ui/android/ui_android.gyp:android_resource_type_java',
387 '../ui/android/ui_android.gyp:bitmap_format_java',
388 '../ui/android/ui_android.gyp:page_transition_types_java',
389 '../ui/android/ui_android.gyp:system_ui_resource_type_java',
390 '../ui/android/ui_android.gyp:touch_device_types_java',
391 '../ui/android/ui_android.gyp:window_open_disposition_java',
392 '../ui/android/ui_android.gyp:text_input_type_java',
393 '../ui/touch_selection/ui_touch_selection.gyp:selection_event_type_j ava',
394 '../ui/touch_selection/ui_touch_selection.gyp:touch_handle_orientati on_java',
395 # We also need to depend on the Java bindings generated from the
396 # .mojom files.
397 '../device/battery/battery.gyp:device_battery_mojo_bindings_for_webv iew',
398 ],
399 }],
400 ],
401 },
402 {
352 'target_name': 'libwebviewchromium', 403 'target_name': 'libwebviewchromium',
353 'includes': [ 404 'includes': [
354 'libwebviewchromium.gypi', 405 'libwebviewchromium.gypi',
355 ], 406 ],
356 } 407 }
357 ], 408 ],
358 'conditions': [ 409 'conditions': [
359 ['android_webview_build==0', { 410 ['android_webview_build==0', {
360 'includes': [ 411 'includes': [
361 'android_webview_tests.gypi', 412 'android_webview_tests.gypi',
362 ], 413 ],
363 'targets': [ 414 'targets': [
364 { 415 {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 'android_webview_jarjar_content_resources', 485 'android_webview_jarjar_content_resources',
435 'android_webview_jarjar_ui_resources', 486 'android_webview_jarjar_ui_resources',
436 'android_webview_jarjar_web_contents_delegate_android_resources', 487 'android_webview_jarjar_web_contents_delegate_android_resources',
437 'android_webview_strings_grd', 488 'android_webview_strings_grd',
438 ], 489 ],
439 }, 490 },
440 ], 491 ],
441 }], 492 }],
442 ], 493 ],
443 } 494 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/lib/main/webview_entry_point.cc » ('j') | android_webview/lib/main/webview_jni_onload.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698