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

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

Issue 1143603004: [Media Router] Add Media Router Mojo impl code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed wez's 3rd comments 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 'includes': [ 6 'includes': [
7 'media_router.gypi', 7 'media_router.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 # GN version: //chrome/browser/media/router:router 11 # GN version: //chrome/browser/media/router:router
12 'target_name': 'media_router', 12 'target_name': 'media_router',
13 'type': 'static_library', 13 'type': 'static_library',
14 'dependencies': [
15 ':media_router_core',
16 ':media_router_keyed_service_factories',
17 ],
18 },
19 {
20 # GN version: //chrome/browser/media/router:core
21 'target_name': 'media_router_core',
22 'type': 'static_library',
14 'include_dirs': [ 23 'include_dirs': [
15 '<(DEPTH)', 24 '<(DEPTH)',
16 '<(DEPTH)/third_party/mojo/src', 25 '<(DEPTH)/third_party/mojo/src',
17 ], 26 ],
18 'dependencies': [ 27 'dependencies': [
19 # media_router_type_converters.h needs the generated file. 28 # media_router_type_converters.h needs the generated file.
20 'media_router_mojo_gen', 29 'media_router_mojo_gen',
21 'media_router_mojo', 30 'media_router_mojo',
22 '<(DEPTH)/base/base.gyp:base', 31 '<(DEPTH)/base/base.gyp:base',
32 '<(DEPTH)/chrome/common_constants.gyp:common_constants',
23 '<(DEPTH)/components/components.gyp:keyed_service_core', 33 '<(DEPTH)/components/components.gyp:keyed_service_core',
24 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', 34 '<(DEPTH)/extensions/extensions.gyp:extensions_browser',
25 '<(DEPTH)/skia/skia.gyp:skia', 35 '<(DEPTH)/skia/skia.gyp:skia',
26 '<(DEPTH)/url/url.gyp:url_lib', 36 '<(DEPTH)/url/url.gyp:url_lib',
27 ], 37 ],
28 'sources': [ 38 'sources': [
29 '<@(media_router_sources)', 39 '<@(media_router_core_sources)',
30 ], 40 ],
31 }, 41 },
32 { 42 {
43 # GN version: //chrome/browser/media/router:keyed_service_factories
44 'target_name': 'media_router_keyed_service_factories',
45 'type': 'static_library',
46 'include_dirs': [
47 '<(DEPTH)',
48 '<(DEPTH)/third_party/mojo/src',
49 ],
50 'dependencies': [
51 ':media_router_core',
52 '<(DEPTH)/base/base.gyp:base',
53 '<(DEPTH)/components/components.gyp:keyed_service_content',
54 '<(DEPTH)/extensions/extensions.gyp:extensions_browser',
55 ],
56 'sources': [
57 '<@(media_router_keyed_service_factories_sources)',
58 ],
59 },
60 {
33 # Mojo compiler for the Media Router internal API. 61 # Mojo compiler for the Media Router internal API.
34 'target_name': 'media_router_mojo_gen', 62 'target_name': 'media_router_mojo_gen',
35 'type': 'none', 63 'type': 'none',
36 'sources': [ 64 'sources': [
37 'media_router.mojom', 65 'media_router.mojom',
38 ], 66 ],
39 'includes': [ 67 'includes': [
40 '../../../../third_party/mojo/mojom_bindings_generator.gypi', 68 '../../../../third_party/mojo/mojom_bindings_generator.gypi',
41 ], 69 ],
42 }, 70 },
(...skipping 10 matching lines...) Expand all
53 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj om.cc', 81 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj om.cc',
54 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj om.h', 82 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/media/router/media_router.moj om.h',
55 ], 83 ],
56 }, 84 },
57 { 85 {
58 # GN version: //chrome/browser/media/router:test_support 86 # GN version: //chrome/browser/media/router:test_support
59 'target_name': 'media_router_test_support', 87 'target_name': 'media_router_test_support',
60 'type': 'static_library', 88 'type': 'static_library',
61 'include_dirs': [ 89 'include_dirs': [
62 '<(DEPTH)', 90 '<(DEPTH)',
91 '<(DEPTH)/third_party/mojo/src',
63 ], 92 ],
64 'dependencies': [ 93 'dependencies': [
65 'media_router', 94 'media_router_core',
66 'media_router_mojo', 95 'media_router_mojo',
67 '<(DEPTH)/base/base.gyp:base', 96 '<(DEPTH)/base/base.gyp:base',
68 '<(DEPTH)/testing/gmock.gyp:gmock', 97 '<(DEPTH)/testing/gmock.gyp:gmock',
69 ], 98 ],
70 'sources': [ 99 'sources': [
71 '<@(media_router_test_support_sources)', 100 '<@(media_router_test_support_sources)',
72 ], 101 ],
73 }, 102 },
74 ], 103 ],
75 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698