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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 "lib/control_message_proxy.cc", | 48 "lib/control_message_proxy.cc", |
49 "lib/control_message_proxy.h", | 49 "lib/control_message_proxy.h", |
50 "lib/filter_chain.cc", | 50 "lib/filter_chain.cc", |
51 "lib/fixed_buffer.cc", | 51 "lib/fixed_buffer.cc", |
52 "lib/fixed_buffer.h", | 52 "lib/fixed_buffer.h", |
53 "lib/handle_interface_serialization.h", | 53 "lib/handle_interface_serialization.h", |
54 "lib/interface_endpoint_client.cc", | 54 "lib/interface_endpoint_client.cc", |
55 "lib/interface_ptr_state.h", | 55 "lib/interface_ptr_state.h", |
56 "lib/map_data_internal.h", | 56 "lib/map_data_internal.h", |
57 "lib/map_serialization.h", | 57 "lib/map_serialization.h", |
| 58 "lib/may_auto_lock.h", |
58 "lib/message.cc", | 59 "lib/message.cc", |
59 "lib/message_buffer.cc", | 60 "lib/message_buffer.cc", |
60 "lib/message_buffer.h", | 61 "lib/message_buffer.h", |
61 "lib/message_builder.cc", | 62 "lib/message_builder.cc", |
62 "lib/message_builder.h", | 63 "lib/message_builder.h", |
63 "lib/message_header_validator.cc", | 64 "lib/message_header_validator.cc", |
64 "lib/message_internal.h", | 65 "lib/message_internal.h", |
65 "lib/multiplex_router.cc", | 66 "lib/multiplex_router.cc", |
66 "lib/multiplex_router.h", | 67 "lib/multiplex_router.h", |
67 "lib/native_enum_data.h", | 68 "lib/native_enum_data.h", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 ] | 165 ] |
165 | 166 |
166 public_deps = [ | 167 public_deps = [ |
167 ":bindings", | 168 ":bindings", |
168 "//third_party/WebKit/Source/wtf", | 169 "//third_party/WebKit/Source/wtf", |
169 ] | 170 ] |
170 | 171 |
171 public_configs = [ "//third_party/WebKit/Source:config" ] | 172 public_configs = [ "//third_party/WebKit/Source:config" ] |
172 } | 173 } |
173 } | 174 } |
OLD | NEW |