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 "associated_binding.h", | 8 "associated_binding.h", |
9 "associated_group.h", | 9 "associated_group.h", |
10 "associated_interface_ptr.h", | 10 "associated_interface_ptr.h", |
(...skipping 23 matching lines...) Expand all Loading... |
34 "lib/control_message_handler.cc", | 34 "lib/control_message_handler.cc", |
35 "lib/control_message_handler.h", | 35 "lib/control_message_handler.h", |
36 "lib/control_message_proxy.cc", | 36 "lib/control_message_proxy.cc", |
37 "lib/control_message_proxy.h", | 37 "lib/control_message_proxy.h", |
38 "lib/filter_chain.cc", | 38 "lib/filter_chain.cc", |
39 "lib/filter_chain.h", | 39 "lib/filter_chain.h", |
40 "lib/fixed_buffer.cc", | 40 "lib/fixed_buffer.cc", |
41 "lib/fixed_buffer.h", | 41 "lib/fixed_buffer.h", |
42 "lib/interface_endpoint_client.cc", | 42 "lib/interface_endpoint_client.cc", |
43 "lib/interface_endpoint_client.h", | 43 "lib/interface_endpoint_client.h", |
| 44 "lib/interface_endpoint_controller.h", |
44 "lib/interface_id.h", | 45 "lib/interface_id.h", |
45 "lib/interface_ptr_state.h", | 46 "lib/interface_ptr_state.h", |
46 "lib/macros.h", | 47 "lib/macros.h", |
47 "lib/map_data_internal.h", | 48 "lib/map_data_internal.h", |
48 "lib/map_internal.h", | 49 "lib/map_internal.h", |
49 "lib/map_serialization.h", | 50 "lib/map_serialization.h", |
50 "lib/message.cc", | 51 "lib/message.cc", |
51 "lib/message_builder.cc", | 52 "lib/message_builder.cc", |
52 "lib/message_builder.h", | 53 "lib/message_builder.h", |
53 "lib/message_filter.cc", | 54 "lib/message_filter.cc", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 "wtf_array.h", | 137 "wtf_array.h", |
137 ] | 138 ] |
138 | 139 |
139 public_deps = [ | 140 public_deps = [ |
140 ":bindings", | 141 ":bindings", |
141 "//third_party/WebKit/Source/wtf", | 142 "//third_party/WebKit/Source/wtf", |
142 ] | 143 ] |
143 | 144 |
144 public_configs = [ "//third_party/WebKit/Source:config" ] | 145 public_configs = [ "//third_party/WebKit/Source:config" ] |
145 } | 146 } |
OLD | NEW |