OLD | NEW |
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 'jni_generator_ptr_type': 'long', | 17 'jni_generator_ptr_type': 'long', |
18 }, | 18 }, |
19 'includes': [ '../build/jni_generator.gypi' ], | 19 'includes': [ '../build/jni_generator.gypi' ], |
20 }, # end of target 'remoting_jni_headers' | 20 }, # end of target 'remoting_jni_headers' |
21 { | 21 { |
22 'target_name': 'remoting_client_jni', | 22 'target_name': 'remoting_client_jni', |
23 'type': 'shared_library', | 23 'type': 'shared_library', |
24 'dependencies': [ | 24 'dependencies': [ |
25 'remoting_base', | 25 'remoting_base', |
26 'remoting_client', | 26 'remoting_client', |
27 'remoting_jingle_glue', | |
28 'remoting_jni_headers', | 27 'remoting_jni_headers', |
29 'remoting_protocol', | 28 'remoting_protocol', |
30 '../google_apis/google_apis.gyp:google_apis', | 29 '../google_apis/google_apis.gyp:google_apis', |
31 ], | 30 ], |
32 'sources': [ | 31 'sources': [ |
33 'client/jni/android_keymap.cc', | 32 'client/jni/android_keymap.cc', |
34 'client/jni/android_keymap.h', | 33 'client/jni/android_keymap.h', |
35 'client/jni/chromoting_jni_instance.cc', | 34 'client/jni/chromoting_jni_instance.cc', |
36 'client/jni/chromoting_jni_instance.h', | 35 'client/jni/chromoting_jni_instance.h', |
37 'client/jni/chromoting_jni_onload.cc', | 36 'client/jni/chromoting_jni_onload.cc', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 'variables': { | 133 'variables': { |
135 'test_suite_name': 'remoting_unittests', | 134 'test_suite_name': 'remoting_unittests', |
136 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)remoting_
unittests<(SHARED_LIB_SUFFIX)', | 135 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)remoting_
unittests<(SHARED_LIB_SUFFIX)', |
137 }, | 136 }, |
138 'includes': [ '../build/apk_test.gypi' ], | 137 'includes': [ '../build/apk_test.gypi' ], |
139 }, | 138 }, |
140 ], | 139 ], |
141 }], # 'OS=="android" and gtest_target_type=="shared_library"' | 140 }], # 'OS=="android" and gtest_target_type=="shared_library"' |
142 ], # end of 'conditions' | 141 ], # end of 'conditions' |
143 } | 142 } |
OLD | NEW |