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

Side by Side Diff: chrome/browser/media/router/BUILD.gn

Issue 1020743003: [Media Router] Design MediaRouter interface with stub implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Kevin's comments Created 5 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 source_set("router") { 7 source_set("router") {
8 deps = [ 8 deps = [
9 "//base", 9 "//base",
10 "//components/keyed_service/content",
11 "//components/keyed_service/core",
10 "//url", 12 "//url",
11 ] 13 ]
12 sources = [ 14 sources = [
13 "media_route.cc", 15 "media_route.cc",
14 "media_route.h", 16 "media_route.h",
15 "media_route_id.h", 17 "media_route_id.h",
18 "media_route_provider_manager_host.h",
19 "media_route_response.cc",
20 "media_route_response.h",
21 "media_router.h",
22 "media_router_impl.cc",
23 "media_router_impl.h",
24 "media_router_impl_factory.cc",
25 "media_router_impl_factory.h",
26 "media_routes_observer.cc",
27 "media_routes_observer.h",
16 "media_sink.cc", 28 "media_sink.cc",
17 "media_sink.h", 29 "media_sink.h",
30 "media_sinks_observer.cc",
31 "media_sinks_observer.h",
18 "media_source.cc", 32 "media_source.cc",
19 "media_source.h", 33 "media_source.h",
20 "media_source_helper.cc", 34 "media_source_helper.cc",
21 "media_source_helper.h", 35 "media_source_helper.h",
22 "route_id_manager.cc", 36 "route_id_manager.cc",
23 "route_id_manager.h", 37 "route_id_manager.h",
24 ] 38 ]
25 } 39 }
26 40
27 source_set("unit_tests") { 41 source_set("unit_tests") {
(...skipping 15 matching lines...) Expand all
43 # Optional standalone test binary, for faster isolated builds. 57 # Optional standalone test binary, for faster isolated builds.
44 test("unit_tests_main") { 58 test("unit_tests_main") {
45 deps = [ 59 deps = [
46 ":unit_tests", 60 ":unit_tests",
47 "//testing/gmock:gmock_main", 61 "//testing/gmock:gmock_main",
48 ] 62 ]
49 sources = [ 63 sources = [
50 ":unittest_files", 64 ":unittest_files",
51 ] 65 ]
52 } 66 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/media/router/media_route.h » ('j') | chrome/browser/media/router/media_route.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698