Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1132903002: [MediaRouter] Add implementation of PresentationServiceDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses Wez's comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 'variables': { 5 'variables': {
6 'chrome_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 '../components/autofill/content/renderer/test_password_autofill_agent.cc', 7 '../components/autofill/content/renderer/test_password_autofill_agent.cc',
8 '../components/autofill/content/renderer/test_password_autofill_agent.h', 8 '../components/autofill/content/renderer/test_password_autofill_agent.h',
9 '../components/autofill/content/renderer/test_password_generation_agent.cc ', 9 '../components/autofill/content/renderer/test_password_generation_agent.cc ',
10 '../components/autofill/content/renderer/test_password_generation_agent.h' , 10 '../components/autofill/content/renderer/test_password_generation_agent.h' ,
(...skipping 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 ], 1429 ],
1430 'chrome_unit_tests_media_router_sources': [ 1430 'chrome_unit_tests_media_router_sources': [
1431 'browser/media/router/issue_manager_unittest.cc', 1431 'browser/media/router/issue_manager_unittest.cc',
1432 'browser/media/router/issue_unittest.cc', 1432 'browser/media/router/issue_unittest.cc',
1433 'browser/media/router/media_router_type_converters_unittest.cc', 1433 'browser/media/router/media_router_type_converters_unittest.cc',
1434 'browser/media/router/media_route_unittest.cc', 1434 'browser/media/router/media_route_unittest.cc',
1435 'browser/media/router/media_sink_unittest.cc', 1435 'browser/media/router/media_sink_unittest.cc',
1436 'browser/media/router/media_source_helper_unittest.cc', 1436 'browser/media/router/media_source_helper_unittest.cc',
1437 'browser/media/router/media_source_unittest.cc', 1437 'browser/media/router/media_source_unittest.cc',
1438 'browser/media/router/presentation_media_sinks_observer_unittest.cc', 1438 'browser/media/router/presentation_media_sinks_observer_unittest.cc',
1439 'browser/media/router/presentation_service_delegate_impl_unittest.cc',
1439 'browser/ui/webui/media_router/media_cast_mode_unittest.cc', 1440 'browser/ui/webui/media_router/media_cast_mode_unittest.cc',
1440 'browser/ui/webui/media_router/media_router_dialog_controller_unittest.cc' , 1441 'browser/ui/webui/media_router/media_router_dialog_controller_unittest.cc' ,
1441 'browser/ui/webui/media_router/media_router_test.cc', 1442 'browser/ui/webui/media_router/media_router_test.cc',
1442 'browser/ui/webui/media_router/media_router_test.h', 1443 'browser/ui/webui/media_router/media_router_test.h',
1443 'browser/ui/webui/media_router/query_result_manager_unittest.cc', 1444 'browser/ui/webui/media_router/query_result_manager_unittest.cc',
1444 ], 1445 ],
1445 # Everything but Android and iOS (iOS is handled separately). 1446 # Everything but Android and iOS (iOS is handled separately).
1446 'chrome_unit_tests_non_android_sources': [ 1447 'chrome_unit_tests_non_android_sources': [
1447 # Bookmark export/import are handled via the BookmarkColumns 1448 # Bookmark export/import are handled via the BookmarkColumns
1448 # ContentProvider. 1449 # ContentProvider.
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
2093 'sources': [ 2094 'sources': [
2094 'browser/sync/glue/session_sync_test_helper.cc', 2095 'browser/sync/glue/session_sync_test_helper.cc',
2095 'browser/sync/glue/session_sync_test_helper.h', 2096 'browser/sync/glue/session_sync_test_helper.h',
2096 'test/base/run_all_unittests.cc', 2097 'test/base/run_all_unittests.cc',
2097 ], 2098 ],
2098 'conditions': [ 2099 'conditions': [
2099 ['enable_media_router==1', { 2100 ['enable_media_router==1', {
2100 'dependencies': [ 2101 'dependencies': [
2101 'browser/media/router/media_router.gyp:media_router_test_support', 2102 'browser/media/router/media_router.gyp:media_router_test_support',
2102 ], 2103 ],
2103 }], 2104 }],
2104 ], 2105 ],
2105 }, 2106 },
2106 { 2107 {
2107 # GN version: //chrome/test:unit_tests 2108 # GN version: //chrome/test:unit_tests
2108 'target_name': 'unit_tests', 2109 'target_name': 'unit_tests',
2109 'type': '<(gtest_target_type)', 2110 'type': '<(gtest_target_type)',
2110 'dependencies': [ 2111 'dependencies': [
2111 # NOTE: New dependencies should generally be added in the OS!="ios" 2112 # NOTE: New dependencies should generally be added in the OS!="ios"
2112 # dependencies block below, rather than here. 2113 # dependencies block below, rather than here.
2113 # Unit tests should only depend on: 2114 # Unit tests should only depend on:
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
2825 'dependencies': [ 2826 'dependencies': [
2826 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2827 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2827 ], 2828 ],
2828 }], 2829 }],
2829 ], 2830 ],
2830 }, 2831 },
2831 ], 2832 ],
2832 }], 2833 }],
2833 ], # 'conditions' 2834 ], # 'conditions'
2834 } 2835 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698