| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
| 8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
| 9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 ['exclude', '^browser/media_galleries/'], | 368 ['exclude', '^browser/media_galleries/'], |
| 369 ], | 369 ], |
| 370 }], | 370 }], |
| 371 ['OS=="win"', { | 371 ['OS=="win"', { |
| 372 'dependencies': [ | 372 'dependencies': [ |
| 373 '../ui/snapshot/snapshot.gyp:snapshot_test_support', | 373 '../ui/snapshot/snapshot.gyp:snapshot_test_support', |
| 374 ], | 374 ], |
| 375 'include_dirs': [ | 375 'include_dirs': [ |
| 376 '<(DEPTH)/third_party/wtl/include', | 376 '<(DEPTH)/third_party/wtl/include', |
| 377 ], | 377 ], |
| 378 'conditions': [ |
| 379 ['use_aura==1', { |
| 380 'dependencies': [ |
| 381 '../win8/win8.gyp:test_registrar_constants', |
| 382 '../win8/win8.gyp:test_support_win8', |
| 383 ], |
| 384 }], |
| 385 ], |
| 378 }], | 386 }], |
| 379 ], | 387 ], |
| 380 }, | 388 }, |
| 381 { | 389 { |
| 382 'target_name': 'test_support_unit', | 390 'target_name': 'test_support_unit', |
| 383 'type': 'static_library', | 391 'type': 'static_library', |
| 384 'dependencies': [ | 392 'dependencies': [ |
| 385 'chrome_resources.gyp:chrome_resources', | 393 'chrome_resources.gyp:chrome_resources', |
| 386 'chrome_resources.gyp:chrome_strings', | 394 'chrome_resources.gyp:chrome_strings', |
| 387 'browser', | 395 'browser', |
| (...skipping 2194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2582 # more details. | 2590 # more details. |
| 2583 'DebugInformationFormat': '3', | 2591 'DebugInformationFormat': '3', |
| 2584 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2592 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2585 }, | 2593 }, |
| 2586 }, | 2594 }, |
| 2587 }, | 2595 }, |
| 2588 ], | 2596 ], |
| 2589 }], | 2597 }], |
| 2590 ], # 'conditions' | 2598 ], # 'conditions' |
| 2591 } | 2599 } |
| OLD | NEW |