| 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 "associated_binding.h", | 9 "associated_binding.h", |
| 10 "associated_group.h", | 10 "associated_group.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "lib/fixed_buffer.h", | 43 "lib/fixed_buffer.h", |
| 44 "lib/interface_endpoint_client.cc", | 44 "lib/interface_endpoint_client.cc", |
| 45 "lib/interface_endpoint_client.h", | 45 "lib/interface_endpoint_client.h", |
| 46 "lib/interface_endpoint_controller.h", | 46 "lib/interface_endpoint_controller.h", |
| 47 "lib/interface_id.h", | 47 "lib/interface_id.h", |
| 48 "lib/interface_ptr_state.h", | 48 "lib/interface_ptr_state.h", |
| 49 "lib/map_data_internal.h", | 49 "lib/map_data_internal.h", |
| 50 "lib/map_internal.h", | 50 "lib/map_internal.h", |
| 51 "lib/map_serialization.h", | 51 "lib/map_serialization.h", |
| 52 "lib/message.cc", | 52 "lib/message.cc", |
| 53 "lib/message_buffer.cc", |
| 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", |
| 57 "lib/message_header_validator.h", | 59 "lib/message_header_validator.h", |
| 58 "lib/message_internal.h", | 60 "lib/message_internal.h", |
| 59 "lib/multiplex_router.cc", | 61 "lib/multiplex_router.cc", |
| 60 "lib/multiplex_router.h", | 62 "lib/multiplex_router.h", |
| 61 "lib/native_struct.cc", | 63 "lib/native_struct.cc", |
| 62 "lib/native_struct_data.cc", | 64 "lib/native_struct_data.cc", |
| 63 "lib/native_struct_data.h", | 65 "lib/native_struct_data.h", |
| 64 "lib/native_struct_serialization.cc", | 66 "lib/native_struct_serialization.cc", |
| 65 "lib/native_struct_serialization.h", | 67 "lib/native_struct_serialization.h", |
| 66 "lib/no_interface.cc", | 68 "lib/no_interface.cc", |
| 67 "lib/pickle_buffer.cc", | |
| 68 "lib/pickle_buffer.h", | |
| 69 "lib/pipe_control_message_handler.cc", | 69 "lib/pipe_control_message_handler.cc", |
| 70 "lib/pipe_control_message_handler.h", | 70 "lib/pipe_control_message_handler.h", |
| 71 "lib/pipe_control_message_handler_delegate.h", | 71 "lib/pipe_control_message_handler_delegate.h", |
| 72 "lib/pipe_control_message_proxy.cc", | 72 "lib/pipe_control_message_proxy.cc", |
| 73 "lib/pipe_control_message_proxy.h", | 73 "lib/pipe_control_message_proxy.h", |
| 74 "lib/router.cc", | 74 "lib/router.cc", |
| 75 "lib/router.h", | 75 "lib/router.h", |
| 76 "lib/scoped_interface_endpoint_handle.cc", | 76 "lib/scoped_interface_endpoint_handle.cc", |
| 77 "lib/scoped_interface_endpoint_handle.h", | 77 "lib/scoped_interface_endpoint_handle.h", |
| 78 "lib/serialization.h", | 78 "lib/serialization.h", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "wtf_array.h", | 151 "wtf_array.h", |
| 152 ] | 152 ] |
| 153 | 153 |
| 154 public_deps = [ | 154 public_deps = [ |
| 155 ":bindings", | 155 ":bindings", |
| 156 "//third_party/WebKit/Source/wtf", | 156 "//third_party/WebKit/Source/wtf", |
| 157 ] | 157 ] |
| 158 | 158 |
| 159 public_configs = [ "//third_party/WebKit/Source:config" ] | 159 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 160 } | 160 } |
| OLD | NEW |