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