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 ], | 12 ], |
13 'dependencies': [ | 13 'dependencies': [ |
14 ':media_router_mojo', | 14 ':media_router_mojo', |
15 '<(DEPTH)/base/base.gyp:base', | 15 '<(DEPTH)/base/base.gyp:base', |
16 '<(DEPTH)/url/url.gyp:url_lib', | 16 '<(DEPTH)/url/url.gyp:url_lib', |
17 ], | 17 ], |
18 'sources': [ | 18 'sources': [ |
19 'common.h', | 19 'common.h', |
| 20 'issue.cc', |
| 21 'issue.h', |
| 22 'issue_manager.cc', |
| 23 'issue_manager.h', |
| 24 'issue_observer.h', |
20 'media_route.cc', | 25 'media_route.cc', |
21 'media_route.h', | 26 'media_route.h', |
22 'media_route_id.h', | 27 'media_route_id.h', |
23 'media_router.h', | 28 'media_router.h', |
24 'media_router_impl.cc', | 29 'media_router_impl.cc', |
25 'media_router_impl.h', | 30 'media_router_impl.h', |
26 'media_router_impl_factory.cc', | 31 'media_router_impl_factory.cc', |
27 'media_router_impl_factory.h', | 32 'media_router_impl_factory.h', |
28 'media_routes_observer.cc', | 33 'media_routes_observer.cc', |
29 'media_routes_observer.h', | 34 'media_routes_observer.h', |
(...skipping 15 matching lines...) Expand all Loading... |
45 'type': 'none', | 50 'type': 'none', |
46 'sources': [ | 51 'sources': [ |
47 'media_router.mojom', | 52 'media_router.mojom', |
48 ], | 53 ], |
49 'includes': [ | 54 'includes': [ |
50 '../../../../third_party/mojo/mojom_bindings_generator.gypi', | 55 '../../../../third_party/mojo/mojom_bindings_generator.gypi', |
51 ], | 56 ], |
52 }, | 57 }, |
53 ], | 58 ], |
54 } | 59 } |
OLD | NEW |