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

Side by Side Diff: media/mojo/interfaces/mojo_bindings.gyp

Issue 2189533002: Add media Remoter mojo interface and RendererWMPDelegate accessor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add GYP target/deps. Created 4 years, 4 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 'targets': [ 5 'targets': [
6 { 6 {
7 # GN version: //media/mojo/interfaces 7 # GN version: //media/mojo/interfaces
8 'target_name': 'audio_output_mojom', 8 'target_name': 'audio_output_mojom',
9 'type': 'none', 9 'type': 'none',
10 'variables': { 10 'variables': {
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'variables': { 93 'variables': {
94 'for_blink': 'true', 94 'for_blink': 'true',
95 }, 95 },
96 'includes': [ 96 'includes': [
97 '../../../mojo/mojom_bindings_generator.gypi', 97 '../../../mojo/mojom_bindings_generator.gypi',
98 ], 98 ],
99 'sources': [ 99 'sources': [
100 'image_capture.mojom', 100 'image_capture.mojom',
101 ], 101 ],
102 }, 102 },
103 {
104 # GN version: //media/mojo/interfaces:remoter
105 'target_name': 'remoter_mojo_bindings',
106 'type': 'static_library',
107 'includes': [
108 '../../../mojo/mojom_bindings_generator.gypi',
109 ],
110 'sources': [
111 'remoter.mojom',
112 ],
113 },
103 ], 114 ],
104 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698