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

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

Issue 1132903002: [MediaRouter] Add implementation of PresentationServiceDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 '<(DEPTH)/third_party/mojo/src', 12 '<(DEPTH)/third_party/mojo/src',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 # media_router_type_converters.h needs the generated file. 15 # media_router_type_converters.h needs the generated file.
16 ':media_router_mojo_gen', 16 ':media_router_mojo_gen',
17 ':media_router_mojo', 17 ':media_router_mojo',
18 '<(DEPTH)/base/base.gyp:base', 18 '<(DEPTH)/base/base.gyp:base',
19 '<(DEPTH)/skia/skia.gyp:skia',
19 '<(DEPTH)/url/url.gyp:url_lib', 20 '<(DEPTH)/url/url.gyp:url_lib',
20 ], 21 ],
21 'sources': [ 22 'sources': [
22 'create_session_request.cc', 23 'create_session_request.cc',
23 'create_session_request.h', 24 'create_session_request.h',
24 'issue.cc', 25 'issue.cc',
25 'issue.h', 26 'issue.h',
26 'issue_manager.cc', 27 'issue_manager.cc',
27 'issue_manager.h', 28 'issue_manager.h',
28 'issue_observer.h', 29 'issue_observer.h',
29 'media_route.cc', 30 'media_route.cc',
30 'media_route.h', 31 'media_route.h',
31 'media_route_id.h', 32 'media_route_id.h',
32 'media_router.h', 33 'media_router.h',
33 'media_router_type_converters.cc', 34 'media_router_type_converters.cc',
34 'media_router_type_converters.h', 35 'media_router_type_converters.h',
35 'media_routes_observer.cc', 36 'media_routes_observer.cc',
36 'media_routes_observer.h', 37 'media_routes_observer.h',
37 'media_sink.cc', 38 'media_sink.cc',
38 'media_sink.h', 39 'media_sink.h',
39 'media_sinks_observer.cc', 40 'media_sinks_observer.cc',
40 'media_sinks_observer.h', 41 'media_sinks_observer.h',
41 'media_source.cc', 42 'media_source.cc',
42 'media_source.h', 43 'media_source.h',
43 'media_source_helper.cc', 44 'media_source_helper.cc',
44 'media_source_helper.h', 45 'media_source_helper.h',
46 'presentation_helper.cc',
47 'presentation_helper.h',
45 'presentation_media_sinks_observer.cc', 48 'presentation_media_sinks_observer.cc',
46 'presentation_media_sinks_observer.h', 49 'presentation_media_sinks_observer.h',
50 'presentation_service_delegate_impl.h',
51 'presentation_service_delegate_impl.cc',
47 'route_id_manager.cc', 52 'route_id_manager.cc',
48 'route_id_manager.h', 53 'route_id_manager.h',
49 ], 54 ],
50 }, 55 },
51 { 56 {
52 # Mojo bindings for the Media Router internal API. 57 # Mojo bindings for the Media Router internal API.
53 'target_name': 'media_router_mojo_gen', 58 'target_name': 'media_router_mojo_gen',
54 'type': 'none', 59 'type': 'none',
55 'sources': [ 60 'sources': [
56 'media_router.mojom', 61 'media_router.mojom',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'sources': [ 95 'sources': [
91 'mock_media_router.cc', 96 'mock_media_router.cc',
92 'mock_media_router.h', 97 'mock_media_router.h',
93 'mock_screen_availability_listener.cc', 98 'mock_screen_availability_listener.cc',
94 'mock_screen_availability_listener.h', 99 'mock_screen_availability_listener.h',
95 ], 100 ],
96 }, 101 },
97 102
98 ], 103 ],
99 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698