OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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': [ | 10 'includes': [ |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 ['OS=="android"', { | 182 ['OS=="android"', { |
183 'targets': [ | 183 'targets': [ |
184 { | 184 { |
185 'target_name': 'tools_unittests_apk_target', | 185 'target_name': 'tools_unittests_apk_target', |
186 'type': 'none', | 186 'type': 'none', |
187 'dependencies': [ | 187 'dependencies': [ |
188 '<(apk_tests_path):tools_unittests_apk', | 188 '<(apk_tests_path):tools_unittests_apk', |
189 ], | 189 ], |
190 }, | 190 }, |
191 ], | 191 ], |
| 192 'conditions': [ |
| 193 ['test_isolation_mode != "noop"', |
| 194 { |
| 195 'targets': [ |
| 196 { |
| 197 'target_name': 'tools_unittests_apk_run', |
| 198 'type': 'none', |
| 199 'dependencies': [ |
| 200 '<(apk_tests_path):tools_unittests_apk', |
| 201 ], |
| 202 'includes': [ |
| 203 '../build/isolate.gypi', |
| 204 ], |
| 205 'sources': [ |
| 206 'tools_unittests_apk.isolate', |
| 207 ], |
| 208 }, |
| 209 ], |
| 210 }, |
| 211 ], |
| 212 ], |
192 }], | 213 }], |
193 ['test_isolation_mode != "noop"', { | 214 ['test_isolation_mode != "noop"', { |
194 'targets': [ | 215 'targets': [ |
195 { | 216 { |
196 'target_name': 'tools_unittests_run', | 217 'target_name': 'tools_unittests_run', |
197 'type': 'none', | 218 'type': 'none', |
198 'dependencies': [ | 219 'dependencies': [ |
199 'tools_unittests', | 220 'tools_unittests', |
200 ], | 221 ], |
201 'includes': [ | 222 'includes': [ |
202 '../build/isolate.gypi', | 223 '../build/isolate.gypi', |
203 ], | 224 ], |
204 'sources': [ | 225 'sources': [ |
205 'tools_unittests.isolate', | 226 'tools_unittests.isolate', |
206 ], | 227 ], |
207 }, | 228 }, |
208 ], | 229 ], |
209 }], | 230 }], |
210 ], | 231 ], |
211 }], # include_tests | 232 }], # include_tests |
212 ], # conditions | 233 ], # conditions |
213 } | 234 } |
OLD | NEW |