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 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
8 # compilation targets to 'All'. Only used on Android. | 8 # compilation targets to 'All'. Only used on Android. |
9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
10 }, | 10 }, |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 # instrumentation). This is incompatible with incremental | 347 # instrumentation). This is incompatible with incremental |
348 # linking. | 348 # linking. |
349 'Profile': 'true', | 349 'Profile': 'true', |
350 }, | 350 }, |
351 } | 351 } |
352 }], | 352 }], |
353 ], | 353 ], |
354 }], | 354 }], |
355 ['OS=="linux"', { | 355 ['OS=="linux"', { |
356 'dependencies': [ | 356 'dependencies': [ |
| 357 '../dbus/dbus.gyp:dbus_unittests', |
357 '../sandbox/sandbox.gyp:sandbox_linux_unittests', | 358 '../sandbox/sandbox.gyp:sandbox_linux_unittests', |
358 '../dbus/dbus.gyp:dbus_unittests', | |
359 ], | 359 ], |
360 }], | 360 }], |
361 ['OS=="mac"', { | 361 ['OS=="mac"', { |
362 'dependencies': [ | 362 'dependencies': [ |
363 '../ui/app_list/app_list.gyp:app_list_unittests', | 363 '../ui/app_list/app_list.gyp:app_list_unittests', |
364 '../ui/message_center/message_center.gyp:*', | 364 '../ui/message_center/message_center.gyp:*', |
365 ], | 365 ], |
366 }], | 366 }], |
367 ['test_isolation_mode != "noop"', { | 367 ['test_isolation_mode != "noop"', { |
368 'dependencies': [ | 368 'dependencies': [ |
369 'chromium_swarm_tests', | 369 'chromium_swarm_tests', |
370 ], | 370 ], |
371 }], | 371 }], |
372 ['OS!="android" and OS!="ios"', { | 372 ['OS!="android" and OS!="ios"', { |
373 'dependencies': [ | 373 'dependencies': [ |
374 '../google_apis/gcm/gcm.gyp:gcm_unit_tests', | 374 '../google_apis/gcm/gcm.gyp:gcm_unit_tests', |
375 ], | 375 ], |
376 }], | 376 }], |
377 ['enable_printing!=0', { | 377 ['enable_printing!=0', { |
378 'dependencies': [ | 378 'dependencies': [ |
379 '../printing/printing.gyp:printing_unittests', | 379 '../printing/printing.gyp:printing_unittests', |
380 ], | 380 ], |
381 }], | 381 }], |
382 ['use_aura==1', { | 382 ['use_aura==1', { |
383 'dependencies': [ | 383 'dependencies': [ |
| 384 '../ui/app_list/app_list.gyp:app_list_unittests', |
384 '../ui/aura/aura.gyp:aura_unittests', | 385 '../ui/aura/aura.gyp:aura_unittests', |
385 '../ui/compositor/compositor.gyp:compositor_unittests', | 386 '../ui/compositor/compositor.gyp:compositor_unittests', |
386 '../ui/keyboard/keyboard.gyp:keyboard_unittests', | 387 '../ui/keyboard/keyboard.gyp:keyboard_unittests', |
387 ], | 388 ], |
388 }], | 389 }], |
389 ['use_aura==1 or toolkit_views==1', { | 390 ['use_aura==1 or toolkit_views==1', { |
390 'dependencies': [ | 391 'dependencies': [ |
391 '../ui/events/events.gyp:events_unittests', | 392 '../ui/events/events.gyp:events_unittests', |
392 ], | 393 ], |
393 }], | 394 }], |
(...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1231 '../chrome/chrome.gyp:interactive_ui_tests_run', | 1232 '../chrome/chrome.gyp:interactive_ui_tests_run', |
1232 '../chrome/chrome.gyp:sync_integration_tests_run', | 1233 '../chrome/chrome.gyp:sync_integration_tests_run', |
1233 '../chrome/chrome.gyp:unit_tests_run', | 1234 '../chrome/chrome.gyp:unit_tests_run', |
1234 '../net/net.gyp:net_unittests_run', | 1235 '../net/net.gyp:net_unittests_run', |
1235 ], | 1236 ], |
1236 }, # target_name: chromium_swarm_tests | 1237 }, # target_name: chromium_swarm_tests |
1237 ], | 1238 ], |
1238 }], | 1239 }], |
1239 ], # conditions | 1240 ], # conditions |
1240 } | 1241 } |
OLD | NEW |