OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("../../mojo_sdk.gni") | |
6 | |
7 mojo_sdk_source_set("bindings") { | |
8 sources = [ | |
9 "array.h", | |
10 "binding.h", | |
11 "error_handler.h", | |
12 "interface_ptr.h", | |
13 "map.h", | |
14 "message.h", | |
15 "message_filter.h", | |
16 "no_interface.h", | |
17 "strong_binding.h", | |
18 "string.h", | |
19 "struct_ptr.h", | |
20 "type_converter.h", | |
21 "lib/array_internal.cc", | |
22 "lib/array_internal.h", | |
23 "lib/array_serialization.h", | |
24 "lib/bindings_internal.h", | |
25 "lib/bindings_serialization.cc", | |
26 "lib/bindings_serialization.h", | |
27 "lib/bounds_checker.cc", | |
28 "lib/bounds_checker.h", | |
29 "lib/buffer.h", | |
30 "lib/connector.cc", | |
31 "lib/connector.h", | |
32 "lib/filter_chain.cc", | |
33 "lib/filter_chain.h", | |
34 "lib/fixed_buffer.cc", | |
35 "lib/fixed_buffer.h", | |
36 "lib/map_data_internal.h", | |
37 "lib/map_internal.h", | |
38 "lib/map_serialization.h", | |
39 "lib/message.cc", | |
40 "lib/message_builder.cc", | |
41 "lib/message_builder.h", | |
42 "lib/message_filter.cc", | |
43 "lib/message_header_validator.cc", | |
44 "lib/message_header_validator.h", | |
45 "lib/message_internal.h", | |
46 "lib/message_queue.cc", | |
47 "lib/message_queue.h", | |
48 "lib/no_interface.cc", | |
49 "lib/router.cc", | |
50 "lib/router.h", | |
51 "lib/string_serialization.cc", | |
52 "lib/string_serialization.h", | |
53 "lib/union_accessor.h", | |
54 "lib/validate_params.h", | |
55 "lib/validation_errors.cc", | |
56 "lib/validation_errors.h", | |
57 ] | |
58 | |
59 deps = [ | |
60 ":callback", | |
61 ] | |
62 | |
63 mojo_sdk_deps = [ | |
64 "mojo/public/cpp/environment", | |
65 "mojo/public/cpp/system", | |
66 ] | |
67 } | |
68 | |
69 mojo_sdk_source_set("callback") { | |
70 sources = [ | |
71 "callback.h", | |
72 "lib/callback_internal.h", | |
73 "lib/template_util.h", | |
74 "lib/shared_data.h", | |
75 "lib/shared_ptr.h", | |
76 ] | |
77 | |
78 mojo_sdk_deps = [ "mojo/public/cpp/system" ] | |
79 } | |
OLD | NEW |