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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 ], | 178 ], |
179 }, # tools_unittests | 179 }, # tools_unittests |
180 ], # targets | 180 ], # targets |
181 'conditions': [ | 181 'conditions': [ |
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 '<(android_tests_path):tools_unittests_apk', |
189 ], | 189 ], |
190 }, | 190 }, |
191 ], | 191 ], |
192 'conditions': [ | 192 'conditions': [ |
193 ['test_isolation_mode != "noop"', | 193 ['test_isolation_mode != "noop"', |
194 { | 194 { |
195 'targets': [ | 195 'targets': [ |
196 { | 196 { |
197 'target_name': 'tools_unittests_apk_run', | 197 'target_name': 'tools_unittests_apk_run', |
198 'type': 'none', | 198 'type': 'none', |
199 'dependencies': [ | 199 'dependencies': [ |
200 '<(apk_tests_path):tools_unittests_apk', | 200 '<(android_tests_path):tools_unittests_apk', |
201 ], | 201 ], |
202 'includes': [ | 202 'includes': [ |
203 '../build/isolate.gypi', | 203 '../build/isolate.gypi', |
204 ], | 204 ], |
205 'sources': [ | 205 'sources': [ |
206 'tools_unittests_apk.isolate', | 206 'tools_unittests_apk.isolate', |
207 ], | 207 ], |
208 }, | 208 }, |
209 ], | 209 ], |
210 }, | 210 }, |
(...skipping 14 matching lines...) Expand all Loading... |
225 'sources': [ | 225 'sources': [ |
226 'tools_unittests.isolate', | 226 'tools_unittests.isolate', |
227 ], | 227 ], |
228 }, | 228 }, |
229 ], | 229 ], |
230 }], | 230 }], |
231 ], | 231 ], |
232 }], # include_tests | 232 }], # include_tests |
233 ], # conditions | 233 ], # conditions |
234 } | 234 } |
OLD | NEW |