OLD | NEW |
---|---|
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', | |
Henrik Grunell
2016/05/12 10:34:37
I'm still confused by that the other parts in this
jam
2016/05/12 16:38:51
the way it is now is consistent with other gyp fil
rchtara
2016/05/13 12:00:09
Done.
rchtara
2016/05/13 12:00:09
Done.
rchtara
2016/05/13 12:39:25
As jam:
| |
9 'type': 'none', | |
10 'variables': { | |
11 'mojom_files': [ | |
12 'audio_output.mojom', | |
13 'audio_parameters.mojom', | |
14 ], | |
15 }, | |
16 'dependencies': [ | |
17 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', | |
18 ], | |
19 'includes': [ '../../../mojo/mojom_bindings_generator_explicit.gypi' ], | |
20 'mojom_typemaps': [ | |
21 'audio_parameters.typemap', | |
22 ], | |
23 }, | |
24 { | |
25 'target_name': 'audio_output_mojom_bindings', | |
26 'type': 'static_library', | |
27 'dependencies': [ | |
28 'audio_output_mojom', | |
29 ], | |
30 }, | |
31 { | |
32 # GN version: //media/mojo/interfaces | |
8 'target_name': 'platform_verification_mojo_bindings', | 33 'target_name': 'platform_verification_mojo_bindings', |
9 'type': 'none', | 34 'type': 'none', |
10 'sources': [ | 35 'sources': [ |
11 'platform_verification.mojom', | 36 'platform_verification.mojom', |
12 ], | 37 ], |
13 'includes': [ '../../../mojo/mojom_bindings_generator.gypi' ], | 38 'includes': [ '../../../mojo/mojom_bindings_generator.gypi' ], |
14 }, | 39 }, |
15 { | 40 { |
16 'target_name': 'platform_verification_api', | 41 'target_name': 'platform_verification_api', |
17 'type': 'static_library', | 42 'type': 'static_library', |
(...skipping 22 matching lines...) Expand all Loading... | |
40 'target_name': 'provision_fetcher_api', | 65 'target_name': 'provision_fetcher_api', |
41 'type': 'static_library', | 66 'type': 'static_library', |
42 'dependencies': [ | 67 'dependencies': [ |
43 'provision_fetcher_mojo_bindings', | 68 'provision_fetcher_mojo_bindings', |
44 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', | 69 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
45 '../../../services/shell/shell_public.gyp:shell_public', | 70 '../../../services/shell/shell_public.gyp:shell_public', |
46 ], | 71 ], |
47 }, | 72 }, |
48 ], | 73 ], |
49 } | 74 } |
OLD | NEW |