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

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: Created 6 years, 6 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 'target_name': 'content_java', 377 'target_name': 'content_java',
378 'type': 'none', 378 'type': 'none',
379 'dependencies': [ 379 'dependencies': [
380 '../base/base.gyp:base', 380 '../base/base.gyp:base',
381 '../media/media.gyp:media_java', 381 '../media/media.gyp:media_java',
382 '../net/net.gyp:net', 382 '../net/net.gyp:net',
383 '../ui/android/ui_android.gyp:ui_java', 383 '../ui/android/ui_android.gyp:ui_java',
384 'common_aidl', 384 'common_aidl',
385 'content_common', 385 'content_common',
386 'content_strings_grd', 386 'content_strings_grd',
387 'content_gamepad_mapping',
387 'gesture_event_type_java', 388 'gesture_event_type_java',
388 'page_transition_types_java', 389 'page_transition_types_java',
389 'popup_item_type_java', 390 'popup_item_type_java',
390 'result_codes_java', 391 'result_codes_java',
391 'speech_recognition_error_java', 392 'speech_recognition_error_java',
392 'top_controls_state_java', 393 'top_controls_state_java',
393 'screen_orientation_values_java', 394 'screen_orientation_values_java',
394 ], 395 ],
395 'variables': { 396 'variables': {
396 'java_in_dir': '../content/public/android/java', 397 'java_in_dir': '../content/public/android/java',
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 { 539 {
539 'destination': '<(PRODUCT_DIR)/content_shell/assets', 540 'destination': '<(PRODUCT_DIR)/content_shell/assets',
540 'files': [ 541 'files': [
541 '<(PRODUCT_DIR)/icudtl.dat', 542 '<(PRODUCT_DIR)/icudtl.dat',
542 ], 543 ],
543 }, 544 },
544 ], 545 ],
545 }], 546 }],
546 ], 547 ],
547 }, 548 },
549 {
550 'target_name': 'content_gamepad_mapping',
551 'type': 'none',
552 'sources': [
553 'public/android/java/src/org/chromium/content/browser/input/Canonica lButtonIndex.template',
554 'public/android/java/src/org/chromium/content/browser/input/Canonica lAxisIndex.template',
555 ],
556 'variables': {
557 'package_name': 'org/chromium/content/browser/input',
558 'template_deps': [
559 'browser/gamepad/canonical_axis_index_list.h',
560 'browser/gamepad/canonical_button_index_list.h',
561 ],
562 },
563 'includes': [ '../build/android/java_cpp_template.gypi' ],
564 },
548 ], 565 ],
549 }], # OS == "android" 566 }], # OS == "android"
550 ], 567 ],
551 } 568 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698