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

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: Updated comments and RequestRoute to take a MediaRouteId 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
« no previous file with comments | « no previous file | chrome/browser/media/router/media_route.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_router.h",
19 "media_router_impl.cc",
20 "media_router_impl.h",
21 "media_router_impl_factory.cc",
22 "media_router_impl_factory.h",
23 "media_routes_observer.cc",
24 "media_routes_observer.h",
16 "media_sink.cc", 25 "media_sink.cc",
17 "media_sink.h", 26 "media_sink.h",
27 "media_sinks_observer.cc",
28 "media_sinks_observer.h",
18 "media_source.cc", 29 "media_source.cc",
19 "media_source.h", 30 "media_source.h",
20 "media_source_helper.cc", 31 "media_source_helper.cc",
21 "media_source_helper.h", 32 "media_source_helper.h",
22 "route_id_manager.cc", 33 "route_id_manager.cc",
23 "route_id_manager.h", 34 "route_id_manager.h",
24 ] 35 ]
25 } 36 }
26 37
27 source_set("unit_tests") { 38 source_set("unit_tests") {
(...skipping 15 matching lines...) Expand all
43 # Optional standalone test binary, for faster isolated builds. 54 # Optional standalone test binary, for faster isolated builds.
44 test("unit_tests_main") { 55 test("unit_tests_main") {
45 deps = [ 56 deps = [
46 ":unit_tests", 57 ":unit_tests",
47 "//testing/gmock:gmock_main", 58 "//testing/gmock:gmock_main",
48 ] 59 ]
49 sources = [ 60 sources = [
50 ":unittest_files", 61 ":unittest_files",
51 ] 62 ]
52 } 63 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/media/router/media_route.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698