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

Side by Side Diff: mojo/mojo_services.gypi

Issue 611633002: mojom: Add associative arrays to the mojom language. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT; fixes clang-format bustage. Created 6 years, 2 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 (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2014 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 # GN version: //mojo/services/clipboard/ 8 # GN version: //mojo/services/clipboard/
9 'target_name': 'mojo_clipboard', 9 'target_name': 'mojo_clipboard',
10 'type': 'loadable_module', 10 'type': 'loadable_module',
(...skipping 13 matching lines...) Expand all
24 ], 24 ],
25 }, 25 },
26 { 26 {
27 # GN version: //mojo/services/public/interfaces/clipboard 27 # GN version: //mojo/services/public/interfaces/clipboard
28 'target_name': 'mojo_clipboard_bindings', 28 'target_name': 'mojo_clipboard_bindings',
29 'type': 'static_library', 29 'type': 'static_library',
30 'sources': [ 30 'sources': [
31 'services/public/interfaces/clipboard/clipboard.mojom', 31 'services/public/interfaces/clipboard/clipboard.mojom',
32 ], 32 ],
33 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 33 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
34 'variables': {
35 # TODO(erg): Expand this as we add map support to other bindings.
36 'mojom_additional_args': ['-g=c++'],
37 },
34 'dependencies': [ 38 'dependencies': [
35 'public/mojo_public.gyp:mojo_cpp_bindings', 39 'public/mojo_public.gyp:mojo_cpp_bindings',
36 ], 40 ],
37 'export_dependent_settings': [ 41 'export_dependent_settings': [
38 'public/mojo_public.gyp:mojo_cpp_bindings', 42 'public/mojo_public.gyp:mojo_cpp_bindings',
39 ], 43 ],
40 }, 44 },
41 { 45 {
42 # GN version: //mojo/services/clipboard:mojo_clipboard_unittests 46 # GN version: //mojo/services/clipboard:mojo_clipboard_unittests
43 'target_name': 'mojo_clipboard_unittests', 47 'target_name': 'mojo_clipboard_unittests',
(...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after
1002 'dependencies': [ 1006 'dependencies': [
1003 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', 1007 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
1004 ], 1008 ],
1005 }], 1009 }],
1006 ], 1010 ],
1007 }, 1011 },
1008 ], 1012 ],
1009 }], 1013 }],
1010 ], 1014 ],
1011 } 1015 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698