OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 'sources': [ | 200 'sources': [ |
201 'drive/dummy_auth_service.cc', | 201 'drive/dummy_auth_service.cc', |
202 'drive/dummy_auth_service.h', | 202 'drive/dummy_auth_service.h', |
203 'drive/test_util.cc', | 203 'drive/test_util.cc', |
204 'drive/test_util.h', | 204 'drive/test_util.h', |
205 ], | 205 ], |
206 }], | 206 }], |
207 ], | 207 ], |
208 }, | 208 }, |
209 ], | 209 ], |
| 210 'conditions': [ |
| 211 ['test_isolation_mode != "noop"', { |
| 212 'targets': [ |
| 213 { |
| 214 'target_name': 'google_apis_unittests_run', |
| 215 'type': 'none', |
| 216 'dependencies': [ |
| 217 'google_apis_unittests', |
| 218 ], |
| 219 'includes': [ |
| 220 '../build/isolate.gypi', |
| 221 ], |
| 222 'sources': [ |
| 223 'google_apis_unittests.isolate', |
| 224 ], |
| 225 }, |
| 226 ], |
| 227 }], |
| 228 ], |
210 } | 229 } |
OLD | NEW |