| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'content_strings_grd', |
| 425 'content_gamepad_mapping', | |
| 426 'gesture_event_type_java', | 425 'gesture_event_type_java', |
| 427 'page_transition_types_java', | 426 'page_transition_types_java', |
| 428 'popup_item_type_java', | 427 'popup_item_type_java', |
| 429 'result_codes_java', | 428 'result_codes_java', |
| 430 'speech_recognition_error_java', | 429 'speech_recognition_error_java', |
| 431 'top_controls_state_java', | 430 'top_controls_state_java', |
| 432 'screen_orientation_values_java', | 431 'screen_orientation_values_java', |
| 433 ], | 432 ], |
| 434 'variables': { | 433 'variables': { |
| 435 'java_in_dir': '../content/public/android/java', | 434 'java_in_dir': '../content/public/android/java', |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 { | 577 { |
| 579 'destination': '<(PRODUCT_DIR)/content_shell/assets', | 578 'destination': '<(PRODUCT_DIR)/content_shell/assets', |
| 580 'files': [ | 579 'files': [ |
| 581 '<(PRODUCT_DIR)/icudtl.dat', | 580 '<(PRODUCT_DIR)/icudtl.dat', |
| 582 ], | 581 ], |
| 583 }, | 582 }, |
| 584 ], | 583 ], |
| 585 }], | 584 }], |
| 586 ], | 585 ], |
| 587 }, | 586 }, |
| 588 { | |
| 589 'target_name': 'content_gamepad_mapping', | |
| 590 'type': 'none', | |
| 591 'sources': [ | |
| 592 'public/android/java/src/org/chromium/content/browser/input/Canonica
lButtonIndex.template', | |
| 593 'public/android/java/src/org/chromium/content/browser/input/Canonica
lAxisIndex.template', | |
| 594 ], | |
| 595 'variables': { | |
| 596 'package_name': 'org/chromium/content/browser/input', | |
| 597 'template_deps': [ | |
| 598 'browser/gamepad/canonical_axis_index_list.h', | |
| 599 'browser/gamepad/canonical_button_index_list.h', | |
| 600 ], | |
| 601 }, | |
| 602 'includes': [ '../build/android/java_cpp_template.gypi' ], | |
| 603 }, | |
| 604 ], | 587 ], |
| 605 }], # OS == "android" | 588 }], # OS == "android" |
| 606 ], | 589 ], |
| 607 } | 590 } |
| OLD | NEW |