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

Side by Side Diff: content/content.gyp

Issue 270633015: [android] Generate strings.xml for android_webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine.
9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' ,
10 }, 10 },
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 { 414 {
415 'target_name': 'content_java', 415 'target_name': 'content_java',
416 'type': 'none', 416 'type': 'none',
417 'dependencies': [ 417 'dependencies': [
418 '../base/base.gyp:base', 418 '../base/base.gyp:base',
419 '../media/media.gyp:media_java', 419 '../media/media.gyp:media_java',
420 '../net/net.gyp:net', 420 '../net/net.gyp:net',
421 '../ui/android/ui_android.gyp:ui_java', 421 '../ui/android/ui_android.gyp:ui_java',
422 'common_aidl', 422 'common_aidl',
423 'content_common', 423 'content_common',
424 'content_strings_grd',
424 'gesture_event_type_java', 425 'gesture_event_type_java',
425 'page_transition_types_java', 426 'page_transition_types_java',
426 'popup_item_type_java', 427 'popup_item_type_java',
427 'result_codes_java', 428 'result_codes_java',
428 'speech_recognition_error_java', 429 'speech_recognition_error_java',
429 'top_controls_state_java', 430 'top_controls_state_java',
430 'screen_orientation_values_java', 431 'screen_orientation_values_java',
431 ], 432 ],
432 'variables': { 433 'variables': {
433 'java_in_dir': '../content/public/android/java', 434 'java_in_dir': '../content/public/android/java',
434 'has_java_resources': 1, 435 'has_java_resources': 1,
435 'R_package': 'org.chromium.content', 436 'R_package': 'org.chromium.content',
436 'R_package_relpath': 'org/chromium/content', 437 'R_package_relpath': 'org/chromium/content',
437 'java_strings_grd': 'android_content_strings.grd', 438 'java_strings_grd': 'android_content_strings.grd',
newt (away) 2014/05/08 19:05:08 java_strings_grd isn't needed anymore
438 }, 439 },
439 'conditions': [ 440 'conditions': [
440 ['android_webview_build == 0', { 441 ['android_webview_build == 0', {
441 'dependencies': [ 442 'dependencies': [
442 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', 443 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java',
443 '../third_party/guava/guava.gyp:guava_javalib', 444 '../third_party/guava/guava.gyp:guava_javalib',
444 ], 445 ],
445 }], 446 }],
446 ], 447 ],
447 'includes': [ '../build/java.gypi' ], 448 'includes': [ '../build/java.gypi' ],
448 }, 449 },
449 { 450 {
451 'target_name': 'content_strings_grd',
452 'type': 'none',
453 'variables': {
454 'grd_file': '../content/public/android/java/strings/android_content_ strings.grd',
455 },
456 'includes': [
457 '../build/java_strings_grd.gypi',
458 ],
459 },
460 {
450 'target_name': 'gesture_event_type_java', 461 'target_name': 'gesture_event_type_java',
451 'type': 'none', 462 'type': 'none',
452 'sources': [ 463 'sources': [
453 'public/android/java/src/org/chromium/content/browser/GestureEventTy pe.template', 464 'public/android/java/src/org/chromium/content/browser/GestureEventTy pe.template',
454 ], 465 ],
455 'variables': { 466 'variables': {
456 'package_name': 'org/chromium/content/browser', 467 'package_name': 'org/chromium/content/browser',
457 'template_deps': ['browser/android/gesture_event_type_list.h'], 468 'template_deps': ['browser/android/gesture_event_type_list.h'],
458 }, 469 },
459 'includes': [ '../build/android/java_cpp_template.gypi' ], 470 'includes': [ '../build/android/java_cpp_template.gypi' ],
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 ], 582 ],
572 }, 583 },
573 ], 584 ],
574 }], 585 }],
575 ], 586 ],
576 }, 587 },
577 ], 588 ],
578 }], # OS == "android" 589 }], # OS == "android"
579 ], 590 ],
580 } 591 }
OLDNEW
« build/java_strings_grd.gypi ('K') | « chrome/chrome.gyp ('k') | ui/android/ui_android.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698