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

Side by Side Diff: chrome/browser/media/router/media_router.gyp

Issue 1055403006: Upstreaming review for Media Router Mojo interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review feedback. Created 5 years, 7 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'media_router', 8 'target_name': 'media_router',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '<(DEPTH)', 11 '<(DEPTH)',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 ':media_router_mojo',
14 '<(DEPTH)/base/base.gyp:base', 15 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/url/url.gyp:url_lib', 16 '<(DEPTH)/url/url.gyp:url_lib',
16 ], 17 ],
17 'sources': [ 18 'sources': [
18 'common.h', 19 'common.h',
19 'media_route.cc', 20 'media_route.cc',
20 'media_route.h', 21 'media_route.h',
21 'media_route_id.h', 22 'media_route_id.h',
22 'media_router.h', 23 'media_router.h',
23 'media_router_impl.cc', 24 'media_router_impl.cc',
24 'media_router_impl.h', 25 'media_router_impl.h',
25 'media_router_impl_factory.cc', 26 'media_router_impl_factory.cc',
26 'media_router_impl_factory.h', 27 'media_router_impl_factory.h',
27 'media_routes_observer.cc', 28 'media_routes_observer.cc',
28 'media_routes_observer.h', 29 'media_routes_observer.h',
29 'media_sink.cc', 30 'media_sink.cc',
30 'media_sink.h', 31 'media_sink.h',
31 'media_sinks_observer.cc', 32 'media_sinks_observer.cc',
32 'media_sinks_observer.h', 33 'media_sinks_observer.h',
33 'media_source.cc', 34 'media_source.cc',
34 'media_source.h', 35 'media_source.h',
35 'media_source_helper.cc', 36 'media_source_helper.cc',
36 'media_source_helper.h', 37 'media_source_helper.h',
37 'route_id_manager.cc', 38 'route_id_manager.cc',
38 'route_id_manager.h', 39 'route_id_manager.h',
39 ], 40 ],
40 }, 41 },
42 {
43 # Mojo compiler for the Media Router internal API.
44 'target_name': 'media_router_mojo',
45 'type': 'none',
46 'sources': [
47 'media_router.mojom',
48 ],
49 'includes': [
50 '../../../../third_party/mojo/mojom_bindings_generator.gypi',
51 ],
52 },
41 ], 53 ],
42 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698