| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 'dependencies': [ | 390 'dependencies': [ |
| 391 'events_unittests', | 391 'events_unittests', |
| 392 ], | 392 ], |
| 393 'variables': { | 393 'variables': { |
| 394 'test_suite_name': 'events_unittests', | 394 'test_suite_name': 'events_unittests', |
| 395 }, | 395 }, |
| 396 'includes': [ '../../build/apk_test.gypi' ], | 396 'includes': [ '../../build/apk_test.gypi' ], |
| 397 }, | 397 }, |
| 398 ], | 398 ], |
| 399 }], | 399 }], |
| 400 ['test_isolation_mode != "noop"', { |
| 401 'targets': [ |
| 402 { |
| 403 'target_name': 'events_unittests_run', |
| 404 'type': 'none', |
| 405 'dependencies': [ |
| 406 'events_unittests', |
| 407 ], |
| 408 'includes': [ |
| 409 '../../build/isolate.gypi', |
| 410 ], |
| 411 'sources': [ |
| 412 'events_unittests.isolate', |
| 413 ], |
| 414 'conditions': [ |
| 415 ['use_x11 == 1', { |
| 416 'dependencies': [ |
| 417 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 418 ], |
| 419 }], |
| 420 ], |
| 421 }, |
| 422 ], |
| 423 }], |
| 400 ], | 424 ], |
| 401 } | 425 } |
| OLD | NEW |