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

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

Issue 1930393002: Switch stream creation and closing in Chrome audio rendering from IPC to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unique_ptr for Binding Created 4 years, 6 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
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': {
11 'mojom_files': [ 11 'mojom_files': [
12 'audio_output.mojom', 12 'audio_output.mojom',
13 'audio_parameters.mojom', 13 'audio_parameters.mojom',
14 ], 14 ],
15 'mojom_typemaps': [
16 'audio_parameters.typemap',
17 ],
15 }, 18 },
16 'dependencies': [ 19 'dependencies': [
17 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 20 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
18 ], 21 ],
19 'includes': [ '../../../mojo/mojom_bindings_generator_explicit.gypi' ], 22 'includes': [ '../../../mojo/mojom_bindings_generator_explicit.gypi' ],
20 'mojom_typemaps': [
21 'audio_parameters.typemap',
22 ],
23 }, 23 },
24 { 24 {
25 'target_name': 'audio_output_mojom_bindings', 25 'target_name': 'audio_output_mojom_bindings',
26 'type': 'static_library', 26 'type': 'static_library',
27 'dependencies': [ 27 'dependencies': [
28 'audio_output_mojom', 28 'audio_output_mojom',
29 ], 29 ],
30 }, 30 },
31 { 31 {
32 # GN version: //media/mojo/interfaces 32 # GN version: //media/mojo/interfaces
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'target_name': 'provision_fetcher_api', 65 'target_name': 'provision_fetcher_api',
66 'type': 'static_library', 66 'type': 'static_library',
67 'dependencies': [ 67 'dependencies': [
68 'provision_fetcher_mojo_bindings', 68 'provision_fetcher_mojo_bindings',
69 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 69 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
70 '../../../services/shell/shell_public.gyp:shell_public', 70 '../../../services/shell/shell_public.gyp:shell_public',
71 ], 71 ],
72 }, 72 },
73 ], 73 ],
74 } 74 }
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698