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', | |
18 }, | 17 }, |
19 'includes': [ '../build/jni_generator.gypi' ], | 18 'includes': [ '../build/jni_generator.gypi' ], |
20 }, # end of target 'remoting_jni_headers' | 19 }, # end of target 'remoting_jni_headers' |
21 { | 20 { |
22 'target_name': 'remoting_client_jni', | 21 'target_name': 'remoting_client_jni', |
23 'type': 'shared_library', | 22 'type': 'shared_library', |
24 'dependencies': [ | 23 'dependencies': [ |
25 'remoting_base', | 24 'remoting_base', |
26 'remoting_client', | 25 'remoting_client', |
27 'remoting_jni_headers', | 26 'remoting_jni_headers', |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 ], | 144 ], |
146 'variables': { | 145 'variables': { |
147 'test_suite_name': 'remoting_unittests', | 146 'test_suite_name': 'remoting_unittests', |
148 }, | 147 }, |
149 'includes': [ '../build/apk_test.gypi' ], | 148 'includes': [ '../build/apk_test.gypi' ], |
150 }, | 149 }, |
151 ], | 150 ], |
152 }], # 'OS=="android" and gtest_target_type=="shared_library"' | 151 }], # 'OS=="android" and gtest_target_type=="shared_library"' |
153 ], # end of 'conditions' | 152 ], # end of 'conditions' |
154 } | 153 } |
OLD | NEW |