OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 ], | 152 ], |
153 }, | 153 }, |
154 ], # targets | 154 ], # targets |
155 }], # OS=="android" | 155 }], # OS=="android" |
156 ['OS=="android"', { | 156 ['OS=="android"', { |
157 'targets': [ | 157 'targets': [ |
158 { | 158 { |
159 'target_name': 'peerconnection_unittests_apk_target', | 159 'target_name': 'peerconnection_unittests_apk_target', |
160 'type': 'none', | 160 'type': 'none', |
161 'dependencies': [ | 161 'dependencies': [ |
162 '<(apk_tests_path):peerconnection_unittests_apk', | 162 '<(android_tests_path):peerconnection_unittests_apk', |
163 ], | 163 ], |
164 }, | 164 }, |
165 ], | 165 ], |
166 'conditions': [ | 166 'conditions': [ |
167 ['test_isolation_mode != "noop"', | 167 ['test_isolation_mode != "noop"', |
168 { | 168 { |
169 'targets': [ | 169 'targets': [ |
170 { | 170 { |
171 'target_name': 'peerconnection_unittests_apk_run', | 171 'target_name': 'peerconnection_unittests_apk_run', |
172 'type': 'none', | 172 'type': 'none', |
173 'dependencies': [ | 173 'dependencies': [ |
174 '<(apk_tests_path):peerconnection_unittests_apk', | 174 '<(android_tests_path):peerconnection_unittests_apk', |
175 ], | 175 ], |
176 'includes': [ | 176 'includes': [ |
177 '../build/isolate.gypi', | 177 '../build/isolate.gypi', |
178 ], | 178 ], |
179 'sources': [ | 179 'sources': [ |
180 'peerconnection_unittests_apk.isolate', | 180 'peerconnection_unittests_apk.isolate', |
181 ], | 181 ], |
182 }, | 182 }, |
183 ] | 183 ] |
184 } | 184 } |
(...skipping 12 matching lines...) Expand all Loading... |
197 '../build/isolate.gypi', | 197 '../build/isolate.gypi', |
198 ], | 198 ], |
199 'sources': [ | 199 'sources': [ |
200 'peerconnection_unittests.isolate', | 200 'peerconnection_unittests.isolate', |
201 ], | 201 ], |
202 }, | 202 }, |
203 ], # targets | 203 ], # targets |
204 }], # test_isolation_mode != "noop" | 204 }], # test_isolation_mode != "noop" |
205 ], # conditions | 205 ], # conditions |
206 } | 206 } |
OLD | NEW |