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

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': [
(...skipping 26 matching lines...) Expand all
37 'media_routes_observer.cc', 37 'media_routes_observer.cc',
38 'media_routes_observer.h', 38 'media_routes_observer.h',
39 'media_sink.cc', 39 'media_sink.cc',
40 'media_sink.h', 40 'media_sink.h',
41 'media_sinks_observer.cc', 41 'media_sinks_observer.cc',
42 'media_sinks_observer.h', 42 'media_sinks_observer.h',
43 'media_source.cc', 43 'media_source.cc',
44 'media_source.h', 44 'media_source.h',
45 'media_source_helper.cc', 45 'media_source_helper.cc',
46 'media_source_helper.h', 46 'media_source_helper.h',
47 'presentation_helper.cc',
48 'presentation_helper.h',
47 'presentation_media_sinks_observer.cc', 49 'presentation_media_sinks_observer.cc',
48 'presentation_media_sinks_observer.h', 50 'presentation_media_sinks_observer.h',
51 'presentation_service_delegate_impl.h',
52 'presentation_service_delegate_impl.cc',
49 'route_id_manager.cc', 53 'route_id_manager.cc',
50 'route_id_manager.h', 54 'route_id_manager.h',
51 ], 55 ],
52 }, 56 },
53 { 57 {
54 # Mojo bindings for the Media Router internal API. 58 # Mojo bindings for the Media Router internal API.
55 'target_name': 'media_router_mojo_gen', 59 'target_name': 'media_router_mojo_gen',
56 'type': 'none', 60 'type': 'none',
57 'sources': [ 61 'sources': [
58 'media_router.mojom', 62 'media_router.mojom',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'sources': [ 96 'sources': [
93 'mock_media_router.cc', 97 'mock_media_router.cc',
94 'mock_media_router.h', 98 'mock_media_router.h',
95 'mock_screen_availability_listener.cc', 99 'mock_screen_availability_listener.cc',
96 'mock_screen_availability_listener.h', 100 'mock_screen_availability_listener.h',
97 ], 101 ],
98 }, 102 },
99 103
100 ], 104 ],
101 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698