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

Side by Side Diff: content/content.gyp

Issue 165483003: Gamepad API for Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 6 years, 9 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
« no previous file with comments | « content/child/runtime_features.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
10 }, 10 },
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 { 406 {
407 'target_name': 'content_java', 407 'target_name': 'content_java',
408 'type': 'none', 408 'type': 'none',
409 'dependencies': [ 409 'dependencies': [
410 '../base/base.gyp:base', 410 '../base/base.gyp:base',
411 '../media/media.gyp:media_java', 411 '../media/media.gyp:media_java',
412 '../net/net.gyp:net', 412 '../net/net.gyp:net',
413 '../ui/android/ui_android.gyp:ui_java', 413 '../ui/android/ui_android.gyp:ui_java',
414 'common_aidl', 414 'common_aidl',
415 'content_common', 415 'content_common',
416 'content_gamepad_mapping',
416 'gesture_event_type_java', 417 'gesture_event_type_java',
417 'page_transition_types_java', 418 'page_transition_types_java',
418 'popup_item_type_java', 419 'popup_item_type_java',
419 'result_codes_java', 420 'result_codes_java',
420 'speech_recognition_error_java', 421 'speech_recognition_error_java',
421 'top_controls_state_java', 422 'top_controls_state_java',
422 ], 423 ],
423 'variables': { 424 'variables': {
424 'java_in_dir': '../content/public/android/java', 425 'java_in_dir': '../content/public/android/java',
425 'has_java_resources': 1, 426 'has_java_resources': 1,
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 { 547 {
547 'destination': '<(PRODUCT_DIR)/content_shell/assets', 548 'destination': '<(PRODUCT_DIR)/content_shell/assets',
548 'files': [ 549 'files': [
549 '<(PRODUCT_DIR)/icudtl.dat', 550 '<(PRODUCT_DIR)/icudtl.dat',
550 ], 551 ],
551 }, 552 },
552 ], 553 ],
553 }], 554 }],
554 ], 555 ],
555 }, 556 },
557 {
558 'target_name': 'content_gamepad_mapping',
559 'type': 'none',
560 'sources': [
561 'public/android/java/src/org/chromium/content/browser/input/gamepad_ mapping/CanonicalButtonIndex.template',
562 'public/android/java/src/org/chromium/content/browser/input/gamepad_ mapping/CanonicalAxisIndex.template',
563 ],
564 'variables': {
565 'package_name': 'org/chromium/content/browser/input/gamepad_mapping' ,
566 'template_deps': [
567 'browser/gamepad/canonical_axis_index_list.h',
568 'browser/gamepad/canonical_button_index_list.h',
569 ],
570 },
571 'includes': [ '../build/android/java_cpp_template.gypi' ],
572 },
556 ], 573 ],
557 }], # OS == "android" 574 }], # OS == "android"
558 ], 575 ],
559 } 576 }
OLDNEW
« no previous file with comments | « content/child/runtime_features.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698