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

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

Issue 2173953003: Media Router Mojo: Use new wrapper types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 {
(...skipping 28 matching lines...) Expand all
39 }], 39 }],
40 ] 40 ]
41 }, 41 },
42 { 42 {
43 # Mojo compiler for the Media Router internal API. 43 # Mojo compiler for the Media Router internal API.
44 'target_name': 'media_router_mojo_gen', 44 'target_name': 'media_router_mojo_gen',
45 'type': 'none', 45 'type': 'none',
46 'sources': [ 46 'sources': [
47 'mojo/media_router.mojom', 47 'mojo/media_router.mojom',
48 ], 48 ],
49 'variables': {
50 'use_new_wrapper_types': 'false',
51 },
52 'includes': [ 49 'includes': [
53 '../../../../mojo/mojom_bindings_generator.gypi', 50 '../../../../mojo/mojom_bindings_generator.gypi',
54 ], 51 ],
55 }, 52 },
56 { 53 {
57 'target_name': 'media_router_mojo', 54 'target_name': 'media_router_mojo',
58 'type': 'static_library', 55 'type': 'static_library',
59 'dependencies': [ 56 'dependencies': [
60 'media_router_mojo_gen', 57 'media_router_mojo_gen',
61 ], 58 ],
(...skipping 25 matching lines...) Expand all
87 '<(DEPTH)/extensions/extensions.gyp:extensions_common', 84 '<(DEPTH)/extensions/extensions.gyp:extensions_common',
88 ], 85 ],
89 'sources': [ 86 'sources': [
90 '<@(media_router_non_android_test_support_sources)', 87 '<@(media_router_non_android_test_support_sources)',
91 ] 88 ]
92 }], 89 }],
93 ] 90 ]
94 }, 91 },
95 ], 92 ],
96 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698