OLD | NEW |
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', |
(...skipping 10 matching lines...) Expand all Loading... |
39 'media_routes_observer.cc', | 40 'media_routes_observer.cc', |
40 'media_routes_observer.h', | 41 'media_routes_observer.h', |
41 'media_sink.cc', | 42 'media_sink.cc', |
42 'media_sink.h', | 43 'media_sink.h', |
43 'media_sinks_observer.cc', | 44 'media_sinks_observer.cc', |
44 'media_sinks_observer.h', | 45 'media_sinks_observer.h', |
45 'media_source.cc', | 46 'media_source.cc', |
46 'media_source.h', | 47 'media_source.h', |
47 'media_source_helper.cc', | 48 'media_source_helper.cc', |
48 'media_source_helper.h', | 49 'media_source_helper.h', |
| 50 'presentation_frame.cc', |
| 51 'presentation_frame.h', |
| 52 'presentation_frame_map.cc', |
| 53 'presentation_frame_map.h', |
| 54 'presentation_helper.cc', |
| 55 'presentation_helper.h', |
49 'presentation_media_sinks_observer.cc', | 56 'presentation_media_sinks_observer.cc', |
50 'presentation_media_sinks_observer.h', | 57 'presentation_media_sinks_observer.h', |
| 58 'presentation_service_delegate_impl.h', |
| 59 'presentation_service_delegate_impl.cc', |
51 'route_id_manager.cc', | 60 'route_id_manager.cc', |
52 'route_id_manager.h', | 61 'route_id_manager.h', |
53 ], | 62 ], |
54 }, | 63 }, |
55 { | 64 { |
56 # Mojo bindings for the Media Router internal API. | 65 # Mojo bindings for the Media Router internal API. |
57 'target_name': 'media_router_mojo_gen', | 66 'target_name': 'media_router_mojo_gen', |
58 'type': 'none', | 67 'type': 'none', |
59 'sources': [ | 68 'sources': [ |
60 'media_router.mojom', | 69 'media_router.mojom', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 'sources': [ | 103 'sources': [ |
95 'mock_media_router.cc', | 104 'mock_media_router.cc', |
96 'mock_media_router.h', | 105 'mock_media_router.h', |
97 'mock_screen_availability_listener.cc', | 106 'mock_screen_availability_listener.cc', |
98 'mock_screen_availability_listener.h', | 107 'mock_screen_availability_listener.h', |
99 ], | 108 ], |
100 }, | 109 }, |
101 | 110 |
102 ], | 111 ], |
103 } | 112 } |
OLD | NEW |