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, | 7 'chromium_code': 1, |
8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
9 # These files lists are shared with the GN build. | 9 # These files lists are shared with the GN build. |
10 'ash_sources': [ | 10 'ash_sources': [ |
(...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1267 ], | 1267 ], |
1268 'conditions': [ | 1268 'conditions': [ |
1269 ['chromeos==1', { | 1269 ['chromeos==1', { |
1270 'dependencies': [ | 1270 'dependencies': [ |
1271 '../ui/display/display.gyp:display', | 1271 '../ui/display/display.gyp:display', |
1272 ], | 1272 ], |
1273 }], | 1273 }], |
1274 ], | 1274 ], |
1275 }, | 1275 }, |
1276 ], | 1276 ], |
| 1277 'conditions': [ |
| 1278 ['test_isolation_mode != "noop"', { |
| 1279 'targets': [ |
| 1280 { |
| 1281 'target_name': 'ash_unittests_run', |
| 1282 'type': 'none', |
| 1283 'dependencies': [ |
| 1284 'ash_unittests', |
| 1285 ], |
| 1286 'includes': [ |
| 1287 '../build/isolate.gypi', |
| 1288 'ash_unittests.isolate', |
| 1289 ], |
| 1290 'sources': [ |
| 1291 'ash_unittests.isolate', |
| 1292 ], |
| 1293 }, |
| 1294 ], |
| 1295 }], |
| 1296 ], |
1277 } | 1297 } |
OLD | NEW |