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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 '../third_party/WebKit/public/blink_headers.gyp:blink_headers_java', | 439 '../third_party/WebKit/public/blink_headers.gyp:blink_headers_java', |
440 'common_aidl', | 440 'common_aidl', |
441 'console_message_level_java', | 441 'console_message_level_java', |
442 'content_common', | 442 'content_common', |
443 'content_strings_grd', | 443 'content_strings_grd', |
444 'content_gamepad_mapping', | 444 'content_gamepad_mapping', |
445 'gesture_event_type_java', | 445 'gesture_event_type_java', |
446 'navigation_controller_java', | 446 'navigation_controller_java', |
447 'popup_item_type_java', | 447 'popup_item_type_java', |
448 'result_codes_java', | 448 'result_codes_java', |
| 449 'readback_response_java', |
449 'speech_recognition_error_java', | 450 'speech_recognition_error_java', |
450 'top_controls_state_java', | 451 'top_controls_state_java', |
451 'screen_orientation_values_java', | 452 'screen_orientation_values_java', |
452 ], | 453 ], |
453 'variables': { | 454 'variables': { |
454 'java_in_dir': '../content/public/android/java', | 455 'java_in_dir': '../content/public/android/java', |
455 'has_java_resources': 1, | 456 'has_java_resources': 1, |
456 'R_package': 'org.chromium.content', | 457 'R_package': 'org.chromium.content', |
457 'R_package_relpath': 'org/chromium/content', | 458 'R_package_relpath': 'org/chromium/content', |
458 }, | 459 }, |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 }, | 505 }, |
505 { | 506 { |
506 'target_name': 'popup_item_type_java', | 507 'target_name': 'popup_item_type_java', |
507 'type': 'none', | 508 'type': 'none', |
508 'variables': { | 509 'variables': { |
509 'source_file': 'browser/android/content_view_core_impl.cc', | 510 'source_file': 'browser/android/content_view_core_impl.cc', |
510 }, | 511 }, |
511 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 512 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
512 }, | 513 }, |
513 { | 514 { |
| 515 'target_name': 'readback_response_java', |
| 516 'type': 'none', |
| 517 'variables': { |
| 518 'source_file': 'public/browser/readback_types.h', |
| 519 }, |
| 520 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 521 }, |
| 522 { |
514 'target_name': 'result_codes_java', | 523 'target_name': 'result_codes_java', |
515 'type': 'none', | 524 'type': 'none', |
516 'variables': { | 525 'variables': { |
517 'source_file': 'public/common/result_codes.h', | 526 'source_file': 'public/common/result_codes.h', |
518 }, | 527 }, |
519 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 528 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
520 }, | 529 }, |
521 { | 530 { |
522 'target_name': 'speech_recognition_error_java', | 531 'target_name': 'speech_recognition_error_java', |
523 'type': 'none', | 532 'type': 'none', |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 ], | 608 ], |
600 }, | 609 }, |
601 ], | 610 ], |
602 }], | 611 }], |
603 ], | 612 ], |
604 }, | 613 }, |
605 ], | 614 ], |
606 }], # OS == "android" | 615 }], # OS == "android" |
607 ], | 616 ], |
608 } | 617 } |
OLD | NEW |