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

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

Issue 1020743003: [Media Router] Design MediaRouter interface with stub implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move MRPMH::Delegate inheritence from MR to MRImpl Created 5 years, 9 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 '<(DEPTH)/base/base.gyp:base', 14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/url/url.gyp:url_lib', 15 '<(DEPTH)/url/url.gyp:url_lib',
16 ], 16 ],
17 'sources': [ 17 'sources': [
18 'common.h', 18 'common.h',
19 'extension_media_route_provider_manager_host.cc',
Kevin M 2015/03/26 20:50:14 Can we be consistent with our use of MRPM abbrevia
imcheng 2015/03/26 23:33:13 Removing extension_* files for now. Yes, we should
20 'extension_media_route_provider_manager_host.h',
21 'extension_mrpm_host_factory.cc',
22 'extension_mrpm_host_factory.h',
19 'media_route.cc', 23 'media_route.cc',
20 'media_route.h', 24 'media_route.h',
21 'media_route_id.h', 25 'media_route_id.h',
26 'media_route_provider_manager_host.h',
27 'media_route_response.cc',
28 'media_route_response.h',
29 'media_router.h',
30 'media_router_impl.cc',
31 'media_router_impl.h',
32 'media_router_impl_factory.cc',
33 'media_router_impl_factory.h',
34 'media_routes_observer.cc',
35 'media_routes_observer.h',
22 'media_sink.cc', 36 'media_sink.cc',
23 'media_sink.h', 37 'media_sink.h',
38 'media_sinks_observer.cc',
39 'media_sinks_observer.h',
24 'media_source.cc', 40 'media_source.cc',
25 'media_source.h', 41 'media_source.h',
26 'media_source_helper.cc', 42 'media_source_helper.cc',
27 'media_source_helper.h', 43 'media_source_helper.h',
28 'route_id_manager.cc', 44 'route_id_manager.cc',
29 'route_id_manager.h', 45 'route_id_manager.h',
30 ], 46 ],
31 }, 47 },
32 ], 48 ],
33 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698