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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 'result_codes_java', | 439 'result_codes_java', |
440 'selection_event_type_java', | 440 'selection_event_type_java', |
441 'speech_recognition_error_java', | 441 'speech_recognition_error_java', |
442 'top_controls_state_java', | 442 'top_controls_state_java', |
| 443 'touch_handle_orientation_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', |
449 'R_package_relpath': 'org/chromium/content', | 450 'R_package_relpath': 'org/chromium/content', |
450 }, | 451 }, |
451 'conditions': [ | 452 'conditions': [ |
452 ['android_webview_build == 0', { | 453 ['android_webview_build == 0', { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 }, | 504 }, |
504 { | 505 { |
505 'target_name': 'selection_event_type_java', | 506 'target_name': 'selection_event_type_java', |
506 'type': 'none', | 507 'type': 'none', |
507 'variables': { | 508 'variables': { |
508 'source_file': 'browser/renderer_host/input/selection_event_type.h', | 509 'source_file': 'browser/renderer_host/input/selection_event_type.h', |
509 }, | 510 }, |
510 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 511 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
511 }, | 512 }, |
512 { | 513 { |
| 514 'target_name': 'touch_handle_orientation_java', |
| 515 'type': 'none', |
| 516 'variables': { |
| 517 'source_file': 'browser/renderer_host/input/touch_handle_orientation
.h', |
| 518 }, |
| 519 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
| 520 }, |
| 521 { |
513 'target_name': 'speech_recognition_error_java', | 522 'target_name': 'speech_recognition_error_java', |
514 'type': 'none', | 523 'type': 'none', |
515 'variables': { | 524 'variables': { |
516 'source_file': 'public/common/speech_recognition_error.h', | 525 'source_file': 'public/common/speech_recognition_error.h', |
517 }, | 526 }, |
518 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 527 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
519 }, | 528 }, |
520 { | 529 { |
521 'target_name': 'top_controls_state_java', | 530 'target_name': 'top_controls_state_java', |
522 'type': 'none', | 531 'type': 'none', |
(...skipping 67 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 |