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

Side by Side Diff: mojo/public/cpp/bindings/BUILD.gn

Issue 611633002: mojom: Add associative arrays to the mojom language. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved test classes to their own shared file. 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
« no previous file with comments | « mojo/edk/mojo_edk.gyp ('k') | mojo/public/cpp/bindings/array.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 source_set("bindings") { 5 source_set("bindings") {
6 sources = [ 6 sources = [
7 "array.h", 7 "array.h",
8 "error_handler.h", 8 "error_handler.h",
9 "interface_ptr.h", 9 "interface_ptr.h",
10 "map.h",
10 "message.h", 11 "message.h",
11 "message_filter.h", 12 "message_filter.h",
12 "no_interface.h", 13 "no_interface.h",
13 "string.h", 14 "string.h",
14 "struct_ptr.h", 15 "struct_ptr.h",
15 "type_converter.h", 16 "type_converter.h",
16 "lib/array_internal.cc", 17 "lib/array_internal.cc",
17 "lib/array_internal.h", 18 "lib/array_internal.h",
18 "lib/array_serialization.h", 19 "lib/array_serialization.h",
19 "lib/bindings_internal.h", 20 "lib/bindings_internal.h",
20 "lib/bindings_serialization.cc", 21 "lib/bindings_serialization.cc",
21 "lib/bindings_serialization.h", 22 "lib/bindings_serialization.h",
22 "lib/bounds_checker.cc", 23 "lib/bounds_checker.cc",
23 "lib/bounds_checker.h", 24 "lib/bounds_checker.h",
24 "lib/buffer.h", 25 "lib/buffer.h",
25 "lib/connector.cc", 26 "lib/connector.cc",
26 "lib/connector.h", 27 "lib/connector.h",
27 "lib/filter_chain.cc", 28 "lib/filter_chain.cc",
28 "lib/filter_chain.h", 29 "lib/filter_chain.h",
29 "lib/fixed_buffer.cc", 30 "lib/fixed_buffer.cc",
30 "lib/fixed_buffer.h", 31 "lib/fixed_buffer.h",
32 "lib/map_data_internal.h",
33 "lib/map_internal.h",
34 "lib/map_serialization.h",
31 "lib/message.cc", 35 "lib/message.cc",
32 "lib/message_builder.cc", 36 "lib/message_builder.cc",
33 "lib/message_builder.h", 37 "lib/message_builder.h",
34 "lib/message_filter.cc", 38 "lib/message_filter.cc",
35 "lib/message_header_validator.cc", 39 "lib/message_header_validator.cc",
36 "lib/message_header_validator.h", 40 "lib/message_header_validator.h",
37 "lib/message_internal.h", 41 "lib/message_internal.h",
38 "lib/message_queue.cc", 42 "lib/message_queue.cc",
39 "lib/message_queue.h", 43 "lib/message_queue.h",
40 "lib/no_interface.cc", 44 "lib/no_interface.cc",
41 "lib/router.cc", 45 "lib/router.cc",
42 "lib/router.h", 46 "lib/router.h",
43 "lib/string_serialization.cc", 47 "lib/string_serialization.cc",
44 "lib/string_serialization.h", 48 "lib/string_serialization.h",
49 "lib/validate_params.h",
45 "lib/validation_errors.cc", 50 "lib/validation_errors.cc",
46 "lib/validation_errors.h", 51 "lib/validation_errors.h",
47 ] 52 ]
48 53
49 deps = [ 54 deps = [
50 ":callback", 55 ":callback",
51 "//mojo/public/cpp/environment", 56 "//mojo/public/cpp/environment",
52 "//mojo/public/cpp/system", 57 "//mojo/public/cpp/system",
53 ] 58 ]
54 } 59 }
55 60
56 source_set("callback") { 61 source_set("callback") {
57 sources = [ 62 sources = [
58 "callback.h", 63 "callback.h",
59 "lib/callback_internal.h", 64 "lib/callback_internal.h",
60 "lib/template_util.h", 65 "lib/template_util.h",
61 "lib/shared_data.h", 66 "lib/shared_data.h",
62 "lib/shared_ptr.h", 67 "lib/shared_ptr.h",
63 ] 68 ]
64 69
65 deps = [ "//mojo/public/cpp/system" ] 70 deps = [ "//mojo/public/cpp/system" ]
66 } 71 }
OLDNEW
« no previous file with comments | « mojo/edk/mojo_edk.gyp ('k') | mojo/public/cpp/bindings/array.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698