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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 'dependencies': [ | 437 'dependencies': [ |
438 '../base/base.gyp:base', | 438 '../base/base.gyp:base', |
439 '../device/battery/battery.gyp:device_battery_java', | 439 '../device/battery/battery.gyp:device_battery_java', |
440 '../device/vibration/vibration.gyp:device_vibration_java', | 440 '../device/vibration/vibration.gyp:device_vibration_java', |
441 '../media/media.gyp:media_java', | 441 '../media/media.gyp:media_java', |
442 '../mojo/mojo_base.gyp:mojo_system_java', | 442 '../mojo/mojo_base.gyp:mojo_system_java', |
443 '../mojo/public/mojo_public.gyp:mojo_application_bindings', | 443 '../mojo/public/mojo_public.gyp:mojo_application_bindings', |
444 '../mojo/public/mojo_public.gyp:mojo_bindings_java', | 444 '../mojo/public/mojo_public.gyp:mojo_bindings_java', |
445 '../net/net.gyp:net', | 445 '../net/net.gyp:net', |
446 '../ui/android/ui_android.gyp:ui_java', | 446 '../ui/android/ui_android.gyp:ui_java', |
| 447 '../ui/touch_selection/ui_touch_selection.gyp:selection_event_type_j
ava', |
447 'common_aidl', | 448 'common_aidl', |
448 'content_common', | 449 'content_common', |
449 'content_strings_grd', | 450 'content_strings_grd', |
450 'content_gamepad_mapping', | 451 'content_gamepad_mapping', |
451 'gesture_event_type_java', | 452 'gesture_event_type_java', |
452 'popup_item_type_java', | 453 'popup_item_type_java', |
453 'result_codes_java', | 454 'result_codes_java', |
454 'selection_event_type_java', | |
455 'speech_recognition_error_java', | 455 'speech_recognition_error_java', |
456 'top_controls_state_java', | 456 'top_controls_state_java', |
457 'screen_orientation_values_java', | 457 'screen_orientation_values_java', |
458 ], | 458 ], |
459 'variables': { | 459 'variables': { |
460 'java_in_dir': '../content/public/android/java', | 460 'java_in_dir': '../content/public/android/java', |
461 'has_java_resources': 1, | 461 'has_java_resources': 1, |
462 'R_package': 'org.chromium.content', | 462 'R_package': 'org.chromium.content', |
463 'R_package_relpath': 'org/chromium/content', | 463 'R_package_relpath': 'org/chromium/content', |
464 }, | 464 }, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 }, | 502 }, |
503 { | 503 { |
504 'target_name': 'result_codes_java', | 504 'target_name': 'result_codes_java', |
505 'type': 'none', | 505 'type': 'none', |
506 'variables': { | 506 'variables': { |
507 'source_file': 'public/common/result_codes.h', | 507 'source_file': 'public/common/result_codes.h', |
508 }, | 508 }, |
509 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 509 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
510 }, | 510 }, |
511 { | 511 { |
512 'target_name': 'selection_event_type_java', | |
513 'type': 'none', | |
514 'variables': { | |
515 'source_file': 'browser/renderer_host/input/selection_event_type.h', | |
516 }, | |
517 'includes': [ '../build/android/java_cpp_enum.gypi' ], | |
518 }, | |
519 { | |
520 'target_name': 'speech_recognition_error_java', | 512 'target_name': 'speech_recognition_error_java', |
521 'type': 'none', | 513 'type': 'none', |
522 'variables': { | 514 'variables': { |
523 'source_file': 'public/common/speech_recognition_error.h', | 515 'source_file': 'public/common/speech_recognition_error.h', |
524 }, | 516 }, |
525 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 517 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
526 }, | 518 }, |
527 { | 519 { |
528 'target_name': 'top_controls_state_java', | 520 'target_name': 'top_controls_state_java', |
529 'type': 'none', | 521 'type': 'none', |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 ], | 589 ], |
598 }, | 590 }, |
599 ], | 591 ], |
600 }], | 592 }], |
601 ], | 593 ], |
602 }, | 594 }, |
603 ], | 595 ], |
604 }], # OS == "android" | 596 }], # OS == "android" |
605 ], | 597 ], |
606 } | 598 } |
OLD | NEW |