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", |
(...skipping 18 matching lines...) Expand all Loading... |
29 "lib/array_internal.cc", | 29 "lib/array_internal.cc", |
30 "lib/array_internal.h", | 30 "lib/array_internal.h", |
31 "lib/array_serialization.h", | 31 "lib/array_serialization.h", |
32 "lib/associated_group.cc", | 32 "lib/associated_group.cc", |
33 "lib/associated_group_controller.cc", | 33 "lib/associated_group_controller.cc", |
34 "lib/associated_interface_ptr_state.h", | 34 "lib/associated_interface_ptr_state.h", |
35 "lib/binding_state.h", | 35 "lib/binding_state.h", |
36 "lib/bindings_internal.cc", | 36 "lib/bindings_internal.cc", |
37 "lib/bindings_internal.h", | 37 "lib/bindings_internal.h", |
38 "lib/buffer.h", | 38 "lib/buffer.h", |
| 39 "lib/clone_equals_util.h", |
39 "lib/connector.cc", | 40 "lib/connector.cc", |
40 "lib/control_message_handler.cc", | 41 "lib/control_message_handler.cc", |
41 "lib/control_message_handler.h", | 42 "lib/control_message_handler.h", |
42 "lib/control_message_proxy.cc", | 43 "lib/control_message_proxy.cc", |
43 "lib/control_message_proxy.h", | 44 "lib/control_message_proxy.h", |
44 "lib/filter_chain.cc", | 45 "lib/filter_chain.cc", |
45 "lib/filter_chain.h", | 46 "lib/filter_chain.h", |
46 "lib/fixed_buffer.cc", | 47 "lib/fixed_buffer.cc", |
47 "lib/fixed_buffer.h", | 48 "lib/fixed_buffer.h", |
48 "lib/handle_interface_serialization.h", | 49 "lib/handle_interface_serialization.h", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 ] | 141 ] |
141 } | 142 } |
142 | 143 |
143 if (!is_ios) { | 144 if (!is_ios) { |
144 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. | 145 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. |
145 source_set("wtf_support") { | 146 source_set("wtf_support") { |
146 sources = [ | 147 sources = [ |
147 "array_traits_wtf.h", | 148 "array_traits_wtf.h", |
148 "array_traits_wtf_vector.h", | 149 "array_traits_wtf_vector.h", |
149 "lib/string_traits_wtf.cc", | 150 "lib/string_traits_wtf.cc", |
| 151 "lib/wtf_clone_equals_util.h", |
150 "lib/wtf_serialization.h", | 152 "lib/wtf_serialization.h", |
151 "map_traits_wtf.h", | 153 "map_traits_wtf.h", |
| 154 "map_traits_wtf_hash_map.h", |
152 "string_traits_wtf.h", | 155 "string_traits_wtf.h", |
153 "wtf_array.h", | 156 "wtf_array.h", |
154 "wtf_map.h", | 157 "wtf_map.h", |
155 ] | 158 ] |
156 | 159 |
157 public_deps = [ | 160 public_deps = [ |
158 ":bindings", | 161 ":bindings", |
159 "//third_party/WebKit/Source/wtf", | 162 "//third_party/WebKit/Source/wtf", |
160 ] | 163 ] |
161 | 164 |
162 public_configs = [ "//third_party/WebKit/Source:config" ] | 165 public_configs = [ "//third_party/WebKit/Source:config" ] |
163 } | 166 } |
164 } | 167 } |
OLD | NEW |