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

Side by Side Diff: remoting/remoting_android.gypi

Issue 341633002: declare dependency on ui/gfx since jni_frame_consumer.cc includes from it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'conditions': [ 6 'conditions': [
7 ['OS=="android"', { 7 ['OS=="android"', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'remoting_jni_headers', 10 'target_name': 'remoting_jni_headers',
11 'type': 'none', 11 'type': 'none',
12 'sources': [ 12 'sources': [
13 'android/java/src/org/chromium/chromoting/jni/JniInterface.java', 13 'android/java/src/org/chromium/chromoting/jni/JniInterface.java',
14 ], 14 ],
15 'variables': { 15 'variables': {
16 'jni_gen_package': 'remoting', 16 'jni_gen_package': 'remoting',
17 }, 17 },
18 'includes': [ '../build/jni_generator.gypi' ], 18 'includes': [ '../build/jni_generator.gypi' ],
19 }, # end of target 'remoting_jni_headers' 19 }, # end of target 'remoting_jni_headers'
20 { 20 {
21 'target_name': 'remoting_client_jni', 21 'target_name': 'remoting_client_jni',
22 'type': 'shared_library', 22 'type': 'shared_library',
23 'dependencies': [ 23 'dependencies': [
24 'remoting_base', 24 'remoting_base',
25 'remoting_client', 25 'remoting_client',
26 'remoting_jni_headers', 26 'remoting_jni_headers',
27 'remoting_protocol', 27 'remoting_protocol',
28 '../google_apis/google_apis.gyp:google_apis', 28 '../google_apis/google_apis.gyp:google_apis',
29 '../ui/gfx/gfx.gyp:gfx',
29 ], 30 ],
30 'sources': [ 31 'sources': [
31 'client/jni/android_keymap.cc', 32 'client/jni/android_keymap.cc',
32 'client/jni/android_keymap.h', 33 'client/jni/android_keymap.h',
33 'client/jni/chromoting_jni_instance.cc', 34 'client/jni/chromoting_jni_instance.cc',
34 'client/jni/chromoting_jni_instance.h', 35 'client/jni/chromoting_jni_instance.h',
35 'client/jni/chromoting_jni_onload.cc', 36 'client/jni/chromoting_jni_onload.cc',
36 'client/jni/chromoting_jni_runtime.cc', 37 'client/jni/chromoting_jni_runtime.cc',
37 'client/jni/chromoting_jni_runtime.h', 38 'client/jni/chromoting_jni_runtime.h',
38 'client/jni/jni_frame_consumer.cc', 39 'client/jni/jni_frame_consumer.cc',
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 ], 145 ],
145 'variables': { 146 'variables': {
146 'test_suite_name': 'remoting_unittests', 147 'test_suite_name': 'remoting_unittests',
147 }, 148 },
148 'includes': [ '../build/apk_test.gypi' ], 149 'includes': [ '../build/apk_test.gypi' ],
149 }, 150 },
150 ], 151 ],
151 }], # 'OS=="android" 152 }], # 'OS=="android"
152 ], # end of 'conditions' 153 ], # end of 'conditions'
153 } 154 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698