Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: content/content.gyp

Issue 133943002: Gamepad API support for chrome on android (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 { 414 {
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_gamepad_mapping',
424 'gesture_event_type_java', 425 'gesture_event_type_java',
425 'page_transition_types_java', 426 'page_transition_types_java',
426 'popup_item_type_java', 427 'popup_item_type_java',
427 'result_codes_java', 428 'result_codes_java',
428 'speech_recognition_error_java', 429 'speech_recognition_error_java',
429 'top_controls_state_java', 430 'top_controls_state_java',
430 'screen_orientation_values_java', 431 'screen_orientation_values_java',
431 ], 432 ],
432 'variables': { 433 'variables': {
433 'java_in_dir': '../content/public/android/java', 434 'java_in_dir': '../content/public/android/java',
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 { 568 {
568 'destination': '<(PRODUCT_DIR)/content_shell/assets', 569 'destination': '<(PRODUCT_DIR)/content_shell/assets',
569 'files': [ 570 'files': [
570 '<(PRODUCT_DIR)/icudtl.dat', 571 '<(PRODUCT_DIR)/icudtl.dat',
571 ], 572 ],
572 }, 573 },
573 ], 574 ],
574 }], 575 }],
575 ], 576 ],
576 }, 577 },
578 {
579 'target_name': 'content_gamepad_mapping',
580 'type': 'none',
581 'sources': [
582 'public/android/java/src/org/chromium/content/browser/input/Canonica lButtonIndex.template',
583 'public/android/java/src/org/chromium/content/browser/input/Canonica lAxisIndex.template',
584 ],
585 'variables': {
586 'package_name': 'org/chromium/content/browser/input',
587 'template_deps': [
588 'browser/gamepad/canonical_axis_index_list.h',
589 'browser/gamepad/canonical_button_index_list.h',
590 ],
591 },
592 'includes': [ '../build/android/java_cpp_template.gypi' ],
593 },
577 ], 594 ],
578 }], # OS == "android" 595 }], # OS == "android"
579 ], 596 ],
580 } 597 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698