| 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', |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 'variables': { | 127 'variables': { |
| 128 'apk_name': 'ChromotingTest', | 128 'apk_name': 'ChromotingTest', |
| 129 'java_in_dir': 'android/javatests', | 129 'java_in_dir': 'android/javatests', |
| 130 'is_test_apk': 1, | 130 'is_test_apk': 1, |
| 131 }, | 131 }, |
| 132 'includes': [ '../build/java_apk.gypi' ], | 132 'includes': [ '../build/java_apk.gypi' ], |
| 133 }, # end of target 'remoting_test_apk' | 133 }, # end of target 'remoting_test_apk' |
| 134 ], # end of 'targets' | 134 ], # end of 'targets' |
| 135 }], # 'OS=="android"' | 135 }], # 'OS=="android"' |
| 136 | 136 |
| 137 ['OS=="android" and gtest_target_type=="shared_library"', { | 137 ['OS=="android"', { |
| 138 'targets': [ | 138 'targets': [ |
| 139 { | 139 { |
| 140 'target_name': 'remoting_unittests_apk', | 140 'target_name': 'remoting_unittests_apk', |
| 141 'type': 'none', | 141 'type': 'none', |
| 142 'dependencies': [ | 142 'dependencies': [ |
| 143 'remoting_unittests', | 143 'remoting_unittests', |
| 144 ], | 144 ], |
| 145 'variables': { | 145 'variables': { |
| 146 'test_suite_name': 'remoting_unittests', | 146 'test_suite_name': 'remoting_unittests', |
| 147 }, | 147 }, |
| 148 'includes': [ '../build/apk_test.gypi' ], | 148 'includes': [ '../build/apk_test.gypi' ], |
| 149 }, | 149 }, |
| 150 ], | 150 ], |
| 151 }], # 'OS=="android" and gtest_target_type=="shared_library"' | 151 }], # 'OS=="android" |
| 152 ], # end of 'conditions' | 152 ], # end of 'conditions' |
| 153 } | 153 } |
| OLD | NEW |