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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
429 '../mojo/mojo_base.gyp:mojo_system_java', | 429 '../mojo/mojo_base.gyp:mojo_system_java', |
430 '../mojo/public/mojo_public.gyp:mojo_bindings_java', | 430 '../mojo/public/mojo_public.gyp:mojo_bindings_java', |
431 '../net/net.gyp:net', | 431 '../net/net.gyp:net', |
432 '../ui/android/ui_android.gyp:ui_java', | 432 '../ui/android/ui_android.gyp:ui_java', |
433 'common_aidl', | 433 'common_aidl', |
434 'content_common', | 434 'content_common', |
435 'content_strings_grd', | 435 'content_strings_grd', |
436 'content_gamepad_mapping', | 436 'content_gamepad_mapping', |
437 'gesture_event_type_java', | 437 'gesture_event_type_java', |
438 'popup_item_type_java', | 438 'popup_item_type_java', |
| 439 'resource_kind_java', |
439 'result_codes_java', | 440 'result_codes_java', |
440 'selection_event_type_java', | 441 'selection_event_type_java', |
441 'speech_recognition_error_java', | 442 'speech_recognition_error_java', |
442 'top_controls_state_java', | 443 'top_controls_state_java', |
443 'screen_orientation_values_java', | 444 'screen_orientation_values_java', |
444 ], | 445 ], |
445 'variables': { | 446 'variables': { |
446 'java_in_dir': '../content/public/android/java', | 447 'java_in_dir': '../content/public/android/java', |
447 'has_java_resources': 1, | 448 'has_java_resources': 1, |
448 'R_package': 'org.chromium.content', | 449 'R_package': 'org.chromium.content', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 }, | 488 }, |
488 { | 489 { |
489 'target_name': 'popup_item_type_java', | 490 'target_name': 'popup_item_type_java', |
490 'type': 'none', | 491 'type': 'none', |
491 'variables': { | 492 'variables': { |
492 'source_file': 'browser/android/content_view_core_impl.cc', | 493 'source_file': 'browser/android/content_view_core_impl.cc', |
493 }, | 494 }, |
494 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 495 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
495 }, | 496 }, |
496 { | 497 { |
| 498 'target_name': 'resource_kind_java', |
| 499 'type': 'none', |
| 500 'variables': { |
| 501 'source_file': 'public/browser/android/resource_manager.h', |
| 502 }, |
| 503 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 504 }, |
| 505 { |
497 'target_name': 'result_codes_java', | 506 'target_name': 'result_codes_java', |
498 'type': 'none', | 507 'type': 'none', |
499 'variables': { | 508 'variables': { |
500 'source_file': 'public/common/result_codes.h', | 509 'source_file': 'public/common/result_codes.h', |
501 }, | 510 }, |
502 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 511 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
503 }, | 512 }, |
504 { | 513 { |
505 'target_name': 'selection_event_type_java', | 514 'target_name': 'selection_event_type_java', |
506 'type': 'none', | 515 'type': 'none', |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 ], | 599 ], |
591 }, | 600 }, |
592 ], | 601 ], |
593 }], | 602 }], |
594 ], | 603 ], |
595 }, | 604 }, |
596 ], | 605 ], |
597 }], # OS == "android" | 606 }], # OS == "android" |
598 ], | 607 ], |
599 } | 608 } |
OLD | NEW |