OLD | NEW |
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 import("../../mojo_sdk.gni") | 5 import("../../mojo_sdk.gni") |
6 | 6 |
7 mojo_sdk_source_set("bindings") { | 7 mojo_sdk_source_set("bindings") { |
8 sources = [ | 8 sources = [ |
9 "array.h", | 9 "array.h", |
10 "binding.h", | 10 "binding.h", |
11 "error_handler.h", | 11 "error_handler.h", |
12 "interface_ptr.h", | 12 "interface_ptr.h", |
13 "interface_ptr_info.h", | 13 "interface_ptr_info.h", |
14 "interface_request.h", | 14 "interface_request.h", |
15 "lib/array_internal.cc", | 15 "lib/array_internal.cc", |
16 "lib/array_internal.h", | 16 "lib/array_internal.h", |
17 "lib/array_serialization.h", | 17 "lib/array_serialization.h", |
18 "lib/bindings_internal.h", | 18 "lib/bindings_internal.h", |
19 "lib/bindings_serialization.cc", | 19 "lib/bindings_serialization.cc", |
20 "lib/bindings_serialization.h", | 20 "lib/bindings_serialization.h", |
21 "lib/bounds_checker.cc", | 21 "lib/bounds_checker.cc", |
22 "lib/bounds_checker.h", | 22 "lib/bounds_checker.h", |
23 "lib/buffer.h", | 23 "lib/buffer.h", |
24 "lib/connector.cc", | 24 "lib/connector.cc", |
25 "lib/connector.h", | 25 "lib/connector.h", |
| 26 "lib/control_message_handler.cc", |
| 27 "lib/control_message_handler.h", |
| 28 "lib/control_message_proxy.cc", |
| 29 "lib/control_message_proxy.h", |
26 "lib/filter_chain.cc", | 30 "lib/filter_chain.cc", |
27 "lib/filter_chain.h", | 31 "lib/filter_chain.h", |
28 "lib/fixed_buffer.cc", | 32 "lib/fixed_buffer.cc", |
29 "lib/fixed_buffer.h", | 33 "lib/fixed_buffer.h", |
30 "lib/interface_ptr_internal.h", | 34 "lib/interface_ptr_internal.h", |
31 "lib/map_data_internal.h", | 35 "lib/map_data_internal.h", |
32 "lib/map_internal.h", | 36 "lib/map_internal.h", |
33 "lib/map_serialization.h", | 37 "lib/map_serialization.h", |
34 "lib/message.cc", | 38 "lib/message.cc", |
35 "lib/message_builder.cc", | 39 "lib/message_builder.cc", |
(...skipping 25 matching lines...) Expand all Loading... |
61 "type_converter.h", | 65 "type_converter.h", |
62 ] | 66 ] |
63 | 67 |
64 deps = [ | 68 deps = [ |
65 ":callback", | 69 ":callback", |
66 ] | 70 ] |
67 | 71 |
68 mojo_sdk_deps = [ | 72 mojo_sdk_deps = [ |
69 "mojo/public/cpp/environment", | 73 "mojo/public/cpp/environment", |
70 "mojo/public/cpp/system", | 74 "mojo/public/cpp/system", |
| 75 "mojo/public/interfaces/bindings:bindings_cpp_sources", |
71 ] | 76 ] |
72 } | 77 } |
73 | 78 |
74 mojo_sdk_source_set("callback") { | 79 mojo_sdk_source_set("callback") { |
75 sources = [ | 80 sources = [ |
76 "callback.h", | 81 "callback.h", |
77 "lib/callback_internal.h", | 82 "lib/callback_internal.h", |
78 "lib/shared_data.h", | 83 "lib/shared_data.h", |
79 "lib/shared_ptr.h", | 84 "lib/shared_ptr.h", |
80 "lib/template_util.h", | 85 "lib/template_util.h", |
81 ] | 86 ] |
82 | 87 |
83 mojo_sdk_deps = [ "mojo/public/cpp/system" ] | 88 mojo_sdk_deps = [ "mojo/public/cpp/system" ] |
84 } | 89 } |
OLD | NEW |