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

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

Issue 1055403006: Upstreaming review for Media Router Mojo interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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': [
(...skipping 20 matching lines...) Expand all
31 'media_sinks_observer.cc', 31 'media_sinks_observer.cc',
32 'media_sinks_observer.h', 32 'media_sinks_observer.h',
33 'media_source.cc', 33 'media_source.cc',
34 'media_source.h', 34 'media_source.h',
35 'media_source_helper.cc', 35 'media_source_helper.cc',
36 'media_source_helper.h', 36 'media_source_helper.h',
37 'route_id_manager.cc', 37 'route_id_manager.cc',
38 'route_id_manager.h', 38 'route_id_manager.h',
39 ], 39 ],
40 }, 40 },
41 {
42 # Mojo compiler for the Media Router IPC API.
xhwang 2015/04/27 17:52:01 s/IPC//? We use mojo to hide IPC.... Or put it ano
Kevin Marshall 2015/04/27 19:23:50 Done.
43 'target_name': 'media_router_api_mojo',
44 'type': 'none',
45 'sources': [
46 'media_router_api.mojom',
xhwang 2015/04/27 17:52:01 Naming is hard and we don't have a consensus on mo
Kevin Marshall 2015/04/27 19:23:50 Done.
47 ],
xhwang 2015/04/27 17:52:01 nit: indentation is off
Kevin Marshall 2015/04/27 19:23:50 Done.
48 'includes': [
49 '../../../../third_party/mojo/mojom_bindings_generator.gypi',
50 ],
51 },
41 ], 52 ],
42 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698