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 static_library("bindings") { | 5 static_library("bindings") { |
6 sources = [ | 6 sources = [ |
7 "array.h", | 7 "array.h", |
8 "array_data_view.h", | 8 "array_data_view.h", |
9 "array_traits.h", | 9 "array_traits.h", |
10 "array_traits_carray.h", | 10 "array_traits_carray.h", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "lib/clone_equals_util.h", | 43 "lib/clone_equals_util.h", |
44 "lib/connector.cc", | 44 "lib/connector.cc", |
45 "lib/control_message_handler.cc", | 45 "lib/control_message_handler.cc", |
46 "lib/control_message_handler.h", | 46 "lib/control_message_handler.h", |
47 "lib/control_message_proxy.cc", | 47 "lib/control_message_proxy.cc", |
48 "lib/control_message_proxy.h", | 48 "lib/control_message_proxy.h", |
49 "lib/filter_chain.cc", | 49 "lib/filter_chain.cc", |
50 "lib/fixed_buffer.cc", | 50 "lib/fixed_buffer.cc", |
51 "lib/fixed_buffer.h", | 51 "lib/fixed_buffer.h", |
52 "lib/handle_interface_serialization.h", | 52 "lib/handle_interface_serialization.h", |
| 53 "lib/hash_util.h", |
53 "lib/interface_endpoint_client.cc", | 54 "lib/interface_endpoint_client.cc", |
54 "lib/interface_ptr_state.h", | 55 "lib/interface_ptr_state.h", |
55 "lib/map_data_internal.h", | 56 "lib/map_data_internal.h", |
56 "lib/map_serialization.h", | 57 "lib/map_serialization.h", |
57 "lib/message.cc", | 58 "lib/message.cc", |
58 "lib/message_buffer.cc", | 59 "lib/message_buffer.cc", |
59 "lib/message_buffer.h", | 60 "lib/message_buffer.h", |
60 "lib/message_builder.cc", | 61 "lib/message_builder.cc", |
61 "lib/message_builder.h", | 62 "lib/message_builder.h", |
62 "lib/message_header_validator.cc", | 63 "lib/message_header_validator.cc", |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 } | 148 } |
148 | 149 |
149 if (!is_ios) { | 150 if (!is_ios) { |
150 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. | 151 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. |
151 source_set("wtf_support") { | 152 source_set("wtf_support") { |
152 sources = [ | 153 sources = [ |
153 "array_traits_wtf.h", | 154 "array_traits_wtf.h", |
154 "array_traits_wtf_vector.h", | 155 "array_traits_wtf_vector.h", |
155 "lib/string_traits_wtf.cc", | 156 "lib/string_traits_wtf.cc", |
156 "lib/wtf_clone_equals_util.h", | 157 "lib/wtf_clone_equals_util.h", |
| 158 "lib/wtf_hash_util.h", |
157 "lib/wtf_serialization.h", | 159 "lib/wtf_serialization.h", |
158 "map_traits_wtf.h", | 160 "map_traits_wtf.h", |
159 "map_traits_wtf_hash_map.h", | 161 "map_traits_wtf_hash_map.h", |
160 "string_traits_wtf.h", | 162 "string_traits_wtf.h", |
161 "wtf_array.h", | 163 "wtf_array.h", |
162 "wtf_map.h", | 164 "wtf_map.h", |
163 ] | 165 ] |
164 | 166 |
165 public_deps = [ | 167 public_deps = [ |
166 ":bindings", | 168 ":bindings", |
167 "//third_party/WebKit/Source/wtf", | 169 "//third_party/WebKit/Source/wtf", |
168 ] | 170 ] |
169 | 171 |
170 public_configs = [ "//third_party/WebKit/Source:config" ] | 172 public_configs = [ "//third_party/WebKit/Source:config" ] |
171 } | 173 } |
172 } | 174 } |
OLD | NEW |