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 "array_traits.h", | 8 "array_traits.h", |
9 "array_traits_carray.h", | 9 "array_traits_carray.h", |
10 "array_traits_standard.h", | 10 "array_traits_standard.h", |
11 "array_traits_stl.h", | 11 "array_traits_stl.h", |
12 "associated_binding.h", | 12 "associated_binding.h", |
13 "associated_group.h", | 13 "associated_group.h", |
| 14 "associated_group_controller.h", |
14 "associated_interface_ptr.h", | 15 "associated_interface_ptr.h", |
15 "associated_interface_ptr_info.h", | 16 "associated_interface_ptr_info.h", |
16 "associated_interface_request.h", | 17 "associated_interface_request.h", |
17 "binding.h", | 18 "binding.h", |
18 "binding_set.h", | 19 "binding_set.h", |
19 "enum_traits.h", | 20 "enum_traits.h", |
| 21 "interface_endpoint_client.h", |
| 22 "interface_endpoint_controller.h", |
| 23 "interface_id.h", |
20 "interface_ptr.h", | 24 "interface_ptr.h", |
21 "interface_ptr_info.h", | 25 "interface_ptr_info.h", |
22 "interface_ptr_set.h", | 26 "interface_ptr_set.h", |
23 "interface_request.h", | 27 "interface_request.h", |
24 "lib/array_internal.cc", | 28 "lib/array_internal.cc", |
25 "lib/array_internal.h", | 29 "lib/array_internal.h", |
26 "lib/array_serialization.h", | 30 "lib/array_serialization.h", |
27 "lib/associated_group.cc", | 31 "lib/associated_group.cc", |
| 32 "lib/associated_group_controller.cc", |
28 "lib/associated_interface_ptr_state.h", | 33 "lib/associated_interface_ptr_state.h", |
29 "lib/binding_state.h", | 34 "lib/binding_state.h", |
30 "lib/bindings_internal.h", | 35 "lib/bindings_internal.h", |
31 "lib/buffer.h", | 36 "lib/buffer.h", |
32 "lib/connector.cc", | 37 "lib/connector.cc", |
33 "lib/connector.h", | 38 "lib/connector.h", |
34 "lib/control_message_handler.cc", | 39 "lib/control_message_handler.cc", |
35 "lib/control_message_handler.h", | 40 "lib/control_message_handler.h", |
36 "lib/control_message_proxy.cc", | 41 "lib/control_message_proxy.cc", |
37 "lib/control_message_proxy.h", | 42 "lib/control_message_proxy.h", |
38 "lib/filter_chain.cc", | 43 "lib/filter_chain.cc", |
39 "lib/filter_chain.h", | 44 "lib/filter_chain.h", |
40 "lib/fixed_buffer.cc", | 45 "lib/fixed_buffer.cc", |
41 "lib/fixed_buffer.h", | 46 "lib/fixed_buffer.h", |
42 "lib/handle_interface_serialization.h", | 47 "lib/handle_interface_serialization.h", |
43 "lib/interface_endpoint_client.cc", | 48 "lib/interface_endpoint_client.cc", |
44 "lib/interface_endpoint_client.h", | |
45 "lib/interface_endpoint_controller.h", | |
46 "lib/interface_id.h", | |
47 "lib/interface_ptr_state.h", | 49 "lib/interface_ptr_state.h", |
48 "lib/map_data_internal.h", | 50 "lib/map_data_internal.h", |
49 "lib/map_serialization.h", | 51 "lib/map_serialization.h", |
50 "lib/message.cc", | 52 "lib/message.cc", |
51 "lib/message_buffer.cc", | 53 "lib/message_buffer.cc", |
52 "lib/message_buffer.h", | 54 "lib/message_buffer.h", |
53 "lib/message_builder.cc", | 55 "lib/message_builder.cc", |
54 "lib/message_builder.h", | 56 "lib/message_builder.h", |
55 "lib/message_filter.cc", | 57 "lib/message_filter.cc", |
56 "lib/message_header_validator.cc", | 58 "lib/message_header_validator.cc", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 ] | 155 ] |
154 | 156 |
155 public_deps = [ | 157 public_deps = [ |
156 ":bindings", | 158 ":bindings", |
157 "//third_party/WebKit/Source/wtf", | 159 "//third_party/WebKit/Source/wtf", |
158 ] | 160 ] |
159 | 161 |
160 public_configs = [ "//third_party/WebKit/Source:config" ] | 162 public_configs = [ "//third_party/WebKit/Source:config" ] |
161 } | 163 } |
162 } | 164 } |
OLD | NEW |