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 source_set("bindings") { | 5 source_set("bindings") { |
6 sources = [ | 6 sources = [ |
7 "array.h", | 7 "array.h", |
8 "buffer.h", | |
9 "callback.h", | 8 "callback.h", |
10 "error_handler.h", | 9 "error_handler.h", |
11 "interface_ptr.h", | 10 "interface_ptr.h", |
12 "message.h", | 11 "message.h", |
13 "message_filter.h", | 12 "message_filter.h", |
14 "no_interface.h", | 13 "no_interface.h", |
15 "string.h", | 14 "string.h", |
16 "struct_ptr.h", | 15 "struct_ptr.h", |
17 "sync_dispatcher.h", | 16 "sync_dispatcher.h", |
18 "type_converter.h", | 17 "type_converter.h", |
19 "lib/array_internal.cc", | 18 "lib/array_internal.cc", |
20 "lib/array_internal.h", | 19 "lib/array_internal.h", |
21 "lib/array_serialization.h", | 20 "lib/array_serialization.h", |
22 "lib/bindings_internal.h", | 21 "lib/bindings_internal.h", |
23 "lib/bindings_serialization.cc", | 22 "lib/bindings_serialization.cc", |
24 "lib/bindings_serialization.h", | 23 "lib/bindings_serialization.h", |
| 24 "lib/bounds_checker.cc", |
| 25 "lib/bounds_checker.h", |
| 26 "lib/buffer.h", |
25 "lib/callback_internal.h", | 27 "lib/callback_internal.h", |
26 "lib/connector.cc", | 28 "lib/connector.cc", |
27 "lib/connector.h", | 29 "lib/connector.h", |
28 "lib/filter_chain.cc", | 30 "lib/filter_chain.cc", |
29 "lib/filter_chain.h", | 31 "lib/filter_chain.h", |
30 "lib/fixed_buffer.cc", | 32 "lib/fixed_buffer.cc", |
31 "lib/fixed_buffer.h", | 33 "lib/fixed_buffer.h", |
32 "lib/message.cc", | 34 "lib/message.cc", |
33 "lib/message_builder.cc", | 35 "lib/message_builder.cc", |
34 "lib/message_builder.h", | 36 "lib/message_builder.h", |
35 "lib/message_filter.cc", | 37 "lib/message_filter.cc", |
36 "lib/message_internal.h", | 38 "lib/message_internal.h", |
37 "lib/message_queue.cc", | 39 "lib/message_queue.cc", |
38 "lib/message_queue.h", | 40 "lib/message_queue.h", |
39 "lib/no_interface.cc", | 41 "lib/no_interface.cc", |
40 "lib/router.cc", | 42 "lib/router.cc", |
41 "lib/router.h", | 43 "lib/router.h", |
42 "lib/shared_data.h", | 44 "lib/shared_data.h", |
43 "lib/shared_ptr.h", | 45 "lib/shared_ptr.h", |
44 "lib/string_serialization.cc", | 46 "lib/string_serialization.cc", |
45 "lib/string_serialization.h", | 47 "lib/string_serialization.h", |
46 "lib/sync_dispatcher.cc", | 48 "lib/sync_dispatcher.cc", |
47 "lib/template_util.h", | 49 "lib/template_util.h", |
48 ] | 50 ] |
49 } | 51 } |
OLD | NEW |