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

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

Issue 1126923002: Add Media Router Mojo impl code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed duplicate entries from media_router_tests.gypi. 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)/url/url.gyp:url_lib', 19 '<(DEPTH)/url/url.gyp:url_lib',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'create_session_request.cc', 22 'create_session_request.cc',
23 'create_session_request.h', 23 'create_session_request.h',
24 'issue.cc', 24 'issue.cc',
25 'issue.h', 25 'issue.h',
26 'issue_manager.cc', 26 'issue_manager.cc',
27 'issue_manager.h', 27 'issue_manager.h',
28 'issue_observer.h', 28 'issues_observer.h',
29 'media_route.cc', 29 'media_route.cc',
30 'media_route.h', 30 'media_route.h',
31 'media_route_id.h', 31 'media_route_id.h',
32 'media_router.h', 32 'media_router.h',
33 'media_router_impl.cc', 33 'media_router_impl.cc',
34 'media_router_impl.h', 34 'media_router_impl.h',
35 'media_router_impl_factory.cc', 35 'media_router_impl_factory.cc',
36 'media_router_impl_factory.h', 36 'media_router_impl_factory.h',
37 'media_router_mojo_impl.cc',
38 'media_router_mojo_impl.h',
39 'media_router_mojo_impl_factory.cc',
40 'media_router_mojo_impl_factory.h',
37 'media_router_type_converters.cc', 41 'media_router_type_converters.cc',
38 'media_router_type_converters.h', 42 'media_router_type_converters.h',
39 'media_routes_observer.cc', 43 'media_routes_observer.cc',
40 'media_routes_observer.h', 44 'media_routes_observer.h',
41 'media_sink.cc', 45 'media_sink.cc',
42 'media_sink.h', 46 'media_sink.h',
43 'media_sinks_observer.cc', 47 'media_sinks_observer.cc',
44 'media_sinks_observer.h', 48 'media_sinks_observer.h',
45 'media_source.cc', 49 'media_source.cc',
46 'media_source.h', 50 'media_source.h',
(...skipping 13 matching lines...) Expand all
60 'media_router.mojom', 64 'media_router.mojom',
61 ], 65 ],
62 'includes': [ 66 'includes': [
63 '../../../../third_party/mojo/mojom_bindings_generator.gypi', 67 '../../../../third_party/mojo/mojom_bindings_generator.gypi',
64 ], 68 ],
65 }, 69 },
66 { 70 {
67 'target_name': 'media_router_mojo', 71 'target_name': 'media_router_mojo',
68 'type': 'static_library', 72 'type': 'static_library',
69 'include_dirs': [ 73 'include_dirs': [
74 '<(DEPTH)',
70 '<(DEPTH)/third_party/mojo/src', 75 '<(DEPTH)/third_party/mojo/src',
71 ], 76 ],
72 'dependencies': [ 77 'dependencies': [
73 'media_router_mojo_gen', 78 'media_router_mojo_gen',
74 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', 79 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib',
75 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', 80 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium',
76 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 81 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
77 ], 82 ],
78 'sources': [ 83 'sources': [
79 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj om.cc', 84 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj om.cc',
(...skipping 13 matching lines...) Expand all
93 ], 98 ],
94 'sources': [ 99 'sources': [
95 'mock_media_router.cc', 100 'mock_media_router.cc',
96 'mock_media_router.h', 101 'mock_media_router.h',
97 'mock_screen_availability_listener.cc', 102 'mock_screen_availability_listener.cc',
98 'mock_screen_availability_listener.h', 103 'mock_screen_availability_listener.h',
99 ], 104 ],
100 }, 105 },
101 106
102 ], 107 ],
103 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698