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

Side by Side Diff: mojo/services/public/mojo_services_public.gyp

Issue 611633002: mojom: Add associative arrays to the mojom language. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Suppress pylint warnings instead of making MapKind public. 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 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 'includes': [ 6 'includes': [
7 '../../mojo_variables.gypi', 7 '../../mojo_variables.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 16 matching lines...) Expand all
27 ], 27 ],
28 }, 28 },
29 { 29 {
30 # GN version: //mojo/services/public/interfaces/clipboard 30 # GN version: //mojo/services/public/interfaces/clipboard
31 'target_name': 'mojo_clipboard_bindings', 31 'target_name': 'mojo_clipboard_bindings',
32 'type': 'static_library', 32 'type': 'static_library',
33 'sources': [ 33 'sources': [
34 'interfaces/clipboard/clipboard.mojom', 34 'interfaces/clipboard/clipboard.mojom',
35 ], 35 ],
36 'includes': [ '../../public/tools/bindings/mojom_bindings_generator.gypi' ], 36 'includes': [ '../../public/tools/bindings/mojom_bindings_generator.gypi' ],
37 'variables': {
38 # TODO(erg): Expand this as we add map support to other bindings.
39 'mojom_additional_args': ['-g=c++'],
40 },
37 'dependencies': [ 41 'dependencies': [
38 '../../public/mojo_public.gyp:mojo_cpp_bindings', 42 '../../public/mojo_public.gyp:mojo_cpp_bindings',
39 ], 43 ],
40 'export_dependent_settings': [ 44 'export_dependent_settings': [
41 '../../public/mojo_public.gyp:mojo_cpp_bindings', 45 '../../public/mojo_public.gyp:mojo_cpp_bindings',
42 ], 46 ],
43 }, 47 },
44 { 48 {
45 # GN version: //mojo/services/public/interfaces/input_events 49 # GN version: //mojo/services/public/interfaces/input_events
46 'target_name': 'mojo_input_events_bindings', 50 'target_name': 'mojo_input_events_bindings',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 'includes': [ '../../public/tools/bindings/mojom_bindings_generator.gypi' ], 256 'includes': [ '../../public/tools/bindings/mojom_bindings_generator.gypi' ],
253 'export_dependent_settings': [ 257 'export_dependent_settings': [
254 '../../public/mojo_public.gyp:mojo_cpp_bindings', 258 '../../public/mojo_public.gyp:mojo_cpp_bindings',
255 ], 259 ],
256 'dependencies': [ 260 'dependencies': [
257 '../../public/mojo_public.gyp:mojo_cpp_bindings', 261 '../../public/mojo_public.gyp:mojo_cpp_bindings',
258 ], 262 ],
259 }, 263 },
260 ], 264 ],
261 } 265 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698