OLD | NEW |
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 Loading... |
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 }, | 438 }, |
439 'conditions': [ | 439 'conditions': [ |
440 ['android_webview_build == 0', { | 440 ['android_webview_build == 0', { |
441 'dependencies': [ | 441 'dependencies': [ |
442 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', | 442 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', |
443 '../third_party/guava/guava.gyp:guava_javalib', | 443 '../third_party/guava/guava.gyp:guava_javalib', |
444 ], | 444 ], |
445 }], | 445 }], |
446 ], | 446 ], |
447 'includes': [ '../build/java.gypi' ], | 447 'includes': [ '../build/java.gypi' ], |
448 }, | 448 }, |
449 { | 449 { |
| 450 'target_name': 'content_strings_grd', |
| 451 'type': 'none', |
| 452 'variables': { |
| 453 'grd_file': '../content/public/android/java/strings/android_content_
strings.grd', |
| 454 }, |
| 455 'includes': [ |
| 456 '../build/java_strings_grd.gypi', |
| 457 ], |
| 458 }, |
| 459 { |
450 'target_name': 'gesture_event_type_java', | 460 'target_name': 'gesture_event_type_java', |
451 'type': 'none', | 461 'type': 'none', |
452 'sources': [ | 462 'sources': [ |
453 'public/android/java/src/org/chromium/content/browser/GestureEventTy
pe.template', | 463 'public/android/java/src/org/chromium/content/browser/GestureEventTy
pe.template', |
454 ], | 464 ], |
455 'variables': { | 465 'variables': { |
456 'package_name': 'org/chromium/content/browser', | 466 'package_name': 'org/chromium/content/browser', |
457 'template_deps': ['browser/android/gesture_event_type_list.h'], | 467 'template_deps': ['browser/android/gesture_event_type_list.h'], |
458 }, | 468 }, |
459 'includes': [ '../build/android/java_cpp_template.gypi' ], | 469 'includes': [ '../build/android/java_cpp_template.gypi' ], |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 ], | 581 ], |
572 }, | 582 }, |
573 ], | 583 ], |
574 }], | 584 }], |
575 ], | 585 ], |
576 }, | 586 }, |
577 ], | 587 ], |
578 }], # OS == "android" | 588 }], # OS == "android" |
579 ], | 589 ], |
580 } | 590 } |
OLD | NEW |