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

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: incorporated 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
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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'content_resources.gyp:content_resources', 118 'content_resources.gyp:content_resources',
119 ], 119 ],
120 'conditions': [ 120 'conditions': [
121 ['java_bridge==1', { 121 ['java_bridge==1', {
122 'dependencies': [ 122 'dependencies': [
123 'content_child', 123 'content_child',
124 ] 124 ]
125 }], 125 }],
126 ['OS=="android"', { 126 ['OS=="android"', {
127 'dependencies': [ 127 'dependencies': [
128 'content_gamepad_mapping',
128 'content_gpu', 129 'content_gpu',
129 'content_utility', 130 'content_utility',
130 ], 131 ],
131 }], 132 }],
132 ], 133 ],
133 }, 134 },
134 { 135 {
135 'target_name': 'content_common', 136 'target_name': 'content_common',
136 'type': 'static_library', 137 'type': 'static_library',
137 'variables': { 'enable_wexit_time_destructors': 1, }, 138 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 }, 493 },
493 { 494 {
494 'target_name': 'content_jni_headers', 495 'target_name': 'content_jni_headers',
495 'type': 'none', 496 'type': 'none',
496 'dependencies': [ 497 'dependencies': [
497 'java_set_jni_headers', 498 'java_set_jni_headers',
498 'motionevent_jni_headers' 499 'motionevent_jni_headers'
499 ], 500 ],
500 'includes': [ 'content_jni.gypi' ], 501 'includes': [ 'content_jni.gypi' ],
501 }, 502 },
503 {
504 'target_name': 'content_gamepad_mapping',
boliu 2014/03/10 18:27:04 This will need changes in android_webview/all_webv
kbalazs 2014/03/12 00:17:36 I moved it to be a dependency for content_java. Do
boliu 2014/03/12 00:58:46 No (but you should add it to content_java regardle
505 'type': 'none',
506 'sources': [
507 'public/android/java/src/org/chromium/content/browser/input/gamepad_ mapping/CanonicalButtonIndex.template',
508 'public/android/java/src/org/chromium/content/browser/input/gamepad_ mapping/CanonicalAxisIndex.template',
509 ],
510 'variables': {
511 'package_name': 'org/chromium/content/browser/input/gamepad_mapping' ,
512 'template_deps': [
513 'browser/gamepad/canonical_axis_index_list.h',
514 'browser/gamepad/canonical_button_index_list.h',
515 ],
516 },
517 'includes': [ '../build/android/java_cpp_template.gypi' ],
518 },
502 ], 519 ],
503 }], # OS == "android" 520 }], # OS == "android"
504 ], 521 ],
505 } 522 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698