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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 'sources/': [ | 430 'sources/': [ |
431 ['exclude', '^browser/ui/app_list/'], | 431 ['exclude', '^browser/ui/app_list/'], |
432 ], | 432 ], |
433 }], | 433 }], |
434 ['enable_webrtc==0', { | 434 ['enable_webrtc==0', { |
435 'sources!': [ | 435 'sources!': [ |
436 'renderer/media/mock_webrtc_logging_message_filter.cc', | 436 'renderer/media/mock_webrtc_logging_message_filter.cc', |
437 'renderer/media/mock_webrtc_logging_message_filter.h', | 437 'renderer/media/mock_webrtc_logging_message_filter.h', |
438 ], | 438 ], |
439 }], | 439 }], |
| 440 ['enable_wifi_bootstrapping', { |
| 441 "sources" : [ |
| 442 'browser/local_discovery/wifi/mock_wifi_manager.cc', |
| 443 'browser/local_discovery/wifi/mock_wifi_manager.h', |
| 444 ] |
| 445 }] |
440 ], | 446 ], |
441 }, | 447 }, |
442 { | 448 { |
443 'target_name': 'test_support_unit', | 449 'target_name': 'test_support_unit', |
444 'type': 'static_library', | 450 'type': 'static_library', |
445 'dependencies': [ | 451 'dependencies': [ |
446 'chrome_resources.gyp:chrome_resources', | 452 'chrome_resources.gyp:chrome_resources', |
447 'chrome_resources.gyp:chrome_strings', | 453 'chrome_resources.gyp:chrome_strings', |
448 'browser', | 454 'browser', |
449 'common', | 455 'common', |
(...skipping 2232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2682 ], | 2688 ], |
2683 'sources/': [ | 2689 'sources/': [ |
2684 ['exclude', '^browser/chromeos/events/'], # crbug.com/354036 | 2690 ['exclude', '^browser/chromeos/events/'], # crbug.com/354036 |
2685 ], | 2691 ], |
2686 }], | 2692 }], |
2687 ['enable_plugin_installation==0', { | 2693 ['enable_plugin_installation==0', { |
2688 'sources!': [ | 2694 'sources!': [ |
2689 'browser/plugins/plugin_installer_unittest.cc', | 2695 'browser/plugins/plugin_installer_unittest.cc', |
2690 ], | 2696 ], |
2691 }], | 2697 }], |
| 2698 ['enable_wifi_bootstrapping', { |
| 2699 'sources' : [ |
| 2700 'browser/local_discovery/wifi/bootstrapping_device_lister_unittest
.cc', |
| 2701 ] |
| 2702 }], |
2692 ], | 2703 ], |
2693 }, | 2704 }, |
2694 { | 2705 { |
2695 'target_name': 'chrome_app_unittests', | 2706 'target_name': 'chrome_app_unittests', |
2696 'type': 'executable', | 2707 'type': 'executable', |
2697 'dependencies': [ | 2708 'dependencies': [ |
2698 # unit tests should only depend on | 2709 # unit tests should only depend on |
2699 # 1) everything that the chrome binaries depend on: | 2710 # 1) everything that the chrome binaries depend on: |
2700 '<@(chromium_browser_dependencies)', | 2711 '<@(chromium_browser_dependencies)', |
2701 '<@(chromium_child_dependencies)', | 2712 '<@(chromium_child_dependencies)', |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2849 'browser/ui/app_list/test/fake_profile_store.h', | 2860 'browser/ui/app_list/test/fake_profile_store.h', |
2850 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', | 2861 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', |
2851 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', | 2862 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', |
2852 'browser/ui/views/app_list/win/app_list_win_unittest.cc', | 2863 'browser/ui/views/app_list/win/app_list_win_unittest.cc', |
2853 ], | 2864 ], |
2854 }, | 2865 }, |
2855 ], | 2866 ], |
2856 }], | 2867 }], |
2857 ], # 'conditions' | 2868 ], # 'conditions' |
2858 } | 2869 } |
OLD | NEW |