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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 # 1) everything that the chrome binaries depend on: | 484 # 1) everything that the chrome binaries depend on: |
485 '<@(chromium_browser_dependencies)', | 485 '<@(chromium_browser_dependencies)', |
486 '<@(chromium_child_dependencies)', | 486 '<@(chromium_child_dependencies)', |
487 # 2) test-specific support libraries: | 487 # 2) test-specific support libraries: |
488 '../base/base.gyp:test_support_base', | 488 '../base/base.gyp:test_support_base', |
489 '../components/components_resources.gyp:components_resources', | 489 '../components/components_resources.gyp:components_resources', |
490 '../content/content_shell_and_tests.gyp:test_support_content', | 490 '../content/content_shell_and_tests.gyp:test_support_content', |
491 '../content/content.gyp:content_app_both', | 491 '../content/content.gyp:content_app_both', |
492 '../net/net.gyp:net', | 492 '../net/net.gyp:net', |
493 '../net/net.gyp:net_test_support', | 493 '../net/net.gyp:net_test_support', |
494 '../rlz/rlz.gyp:test_support_rlz', | |
495 '../sync/sync.gyp:test_support_sync_api', | 494 '../sync/sync.gyp:test_support_sync_api', |
496 '../sync/sync.gyp:test_support_sync_core', | 495 '../sync/sync.gyp:test_support_sync_core', |
497 '../sync/sync.gyp:test_support_sync_internal_api', | 496 '../sync/sync.gyp:test_support_sync_internal_api', |
498 '../sync/sync.gyp:test_support_sync_notifier', | 497 '../sync/sync.gyp:test_support_sync_notifier', |
499 '../testing/gmock.gyp:gmock', | 498 '../testing/gmock.gyp:gmock', |
500 '../testing/gtest.gyp:gtest', | 499 '../testing/gtest.gyp:gtest', |
501 'test_support_common', | 500 'test_support_common', |
502 'test_support_unit', | 501 'test_support_unit', |
503 # 3) anything tests directly depend on | 502 # 3) anything tests directly depend on |
504 '../courgette/courgette.gyp:courgette_lib', | 503 '../courgette/courgette.gyp:courgette_lib', |
(...skipping 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2478 'utility/media_galleries/picasa_albums_indexer_unittest.cc', | 2477 'utility/media_galleries/picasa_albums_indexer_unittest.cc', |
2479 'utility/media_galleries/pmp_column_reader_unittest.cc', | 2478 'utility/media_galleries/pmp_column_reader_unittest.cc', |
2480 ], | 2479 ], |
2481 }], | 2480 }], |
2482 ['OS=="mac"', { | 2481 ['OS=="mac"', { |
2483 'sources': [ | 2482 'sources': [ |
2484 'browser/media_galleries/fileapi/iphoto_file_util_unittest.cc', | 2483 'browser/media_galleries/fileapi/iphoto_file_util_unittest.cc', |
2485 'utility/media_galleries/iphoto_library_parser_unittest.cc', | 2484 'utility/media_galleries/iphoto_library_parser_unittest.cc', |
2486 ], | 2485 ], |
2487 }], | 2486 }], |
2488 ['enable_rlz==0', { | 2487 ['enable_rlz!=0', { |
| 2488 'dependencies': [ |
| 2489 '../rlz/rlz.gyp:test_support_rlz', |
| 2490 ], |
| 2491 }, { # enable_rlz==0 |
2489 'sources!': [ | 2492 'sources!': [ |
2490 'browser/rlz/rlz_unittest.cc', | 2493 'browser/rlz/rlz_unittest.cc', |
2491 ], | 2494 ], |
2492 }], | 2495 }], |
2493 ['OS=="win" and component!="shared_library"', { | 2496 ['OS=="win" and component!="shared_library"', { |
2494 # Unit_tests pdb files can get too big when incremental linking is | 2497 # Unit_tests pdb files can get too big when incremental linking is |
2495 # on, disabling for this target. | 2498 # on, disabling for this target. |
2496 'configurations': { | 2499 'configurations': { |
2497 'Debug': { | 2500 'Debug': { |
2498 'msvs_settings': { | 2501 'msvs_settings': { |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2923 'dependencies': [ | 2926 'dependencies': [ |
2924 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2927 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
2925 ], | 2928 ], |
2926 }], | 2929 }], |
2927 ], | 2930 ], |
2928 }, | 2931 }, |
2929 ], | 2932 ], |
2930 }], | 2933 }], |
2931 ], # 'conditions' | 2934 ], # 'conditions' |
2932 } | 2935 } |
OLD | NEW |