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

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: Redundant forward decl removed. 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_mojo_impl.cc',
34 'media_router_mojo_impl.h',
35 'media_router_mojo_impl_factory.cc',
36 'media_router_mojo_impl_factory.h',
33 'media_router_type_converters.cc', 37 'media_router_type_converters.cc',
34 'media_router_type_converters.h', 38 'media_router_type_converters.h',
35 'media_routes_observer.cc', 39 'media_routes_observer.cc',
36 'media_routes_observer.h', 40 'media_routes_observer.h',
37 'media_sink.cc', 41 'media_sink.cc',
38 'media_sink.h', 42 'media_sink.h',
39 'media_sinks_observer.cc', 43 'media_sinks_observer.cc',
40 'media_sinks_observer.h', 44 'media_sinks_observer.h',
41 'media_source.cc', 45 'media_source.cc',
42 'media_source.h', 46 'media_source.h',
(...skipping 13 matching lines...) Expand all
56 'media_router.mojom', 60 'media_router.mojom',
57 ], 61 ],
58 'includes': [ 62 'includes': [
59 '../../../../third_party/mojo/mojom_bindings_generator.gypi', 63 '../../../../third_party/mojo/mojom_bindings_generator.gypi',
60 ], 64 ],
61 }, 65 },
62 { 66 {
63 'target_name': 'media_router_mojo', 67 'target_name': 'media_router_mojo',
64 'type': 'static_library', 68 'type': 'static_library',
65 'include_dirs': [ 69 'include_dirs': [
70 '<(DEPTH)',
66 '<(DEPTH)/third_party/mojo/src', 71 '<(DEPTH)/third_party/mojo/src',
67 ], 72 ],
68 'dependencies': [ 73 'dependencies': [
69 'media_router_mojo_gen', 74 'media_router_mojo_gen',
70 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', 75 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib',
71 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', 76 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium',
72 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 77 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
73 ], 78 ],
74 'sources': [ 79 'sources': [
75 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj om.cc', 80 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj om.cc',
(...skipping 13 matching lines...) Expand all
89 ], 94 ],
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