| 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 15 matching lines...) Expand all Loading... |
| 26 "interface_ptr_info.h", | 26 "interface_ptr_info.h", |
| 27 "interface_ptr_set.h", | 27 "interface_ptr_set.h", |
| 28 "interface_request.h", | 28 "interface_request.h", |
| 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.h", | 37 "lib/bindings_internal.h", |
| 37 "lib/buffer.h", | 38 "lib/buffer.h", |
| 38 "lib/connector.cc", | 39 "lib/connector.cc", |
| 39 "lib/control_message_handler.cc", | 40 "lib/control_message_handler.cc", |
| 40 "lib/control_message_handler.h", | 41 "lib/control_message_handler.h", |
| 41 "lib/control_message_proxy.cc", | 42 "lib/control_message_proxy.cc", |
| 42 "lib/control_message_proxy.h", | 43 "lib/control_message_proxy.h", |
| 43 "lib/filter_chain.cc", | 44 "lib/filter_chain.cc", |
| 44 "lib/filter_chain.h", | 45 "lib/filter_chain.h", |
| 45 "lib/fixed_buffer.cc", | 46 "lib/fixed_buffer.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 69 "lib/no_interface.cc", | 70 "lib/no_interface.cc", |
| 70 "lib/pipe_control_message_handler.cc", | 71 "lib/pipe_control_message_handler.cc", |
| 71 "lib/pipe_control_message_proxy.cc", | 72 "lib/pipe_control_message_proxy.cc", |
| 72 "lib/router.cc", | 73 "lib/router.cc", |
| 73 "lib/router.h", | 74 "lib/router.h", |
| 74 "lib/scoped_interface_endpoint_handle.cc", | 75 "lib/scoped_interface_endpoint_handle.cc", |
| 75 "lib/serialization.h", | 76 "lib/serialization.h", |
| 76 "lib/serialization_context.cc", | 77 "lib/serialization_context.cc", |
| 77 "lib/serialization_context.h", | 78 "lib/serialization_context.h", |
| 78 "lib/serialization_forward.h", | 79 "lib/serialization_forward.h", |
| 79 "lib/serialization_util.cc", | |
| 80 "lib/serialization_util.h", | 80 "lib/serialization_util.h", |
| 81 "lib/string_serialization.h", | 81 "lib/string_serialization.h", |
| 82 "lib/string_traits_string16.cc", | 82 "lib/string_traits_string16.cc", |
| 83 "lib/sync_call_restrictions.cc", | 83 "lib/sync_call_restrictions.cc", |
| 84 "lib/sync_handle_registry.cc", | 84 "lib/sync_handle_registry.cc", |
| 85 "lib/sync_handle_watcher.cc", | 85 "lib/sync_handle_watcher.cc", |
| 86 "lib/template_util.h", | 86 "lib/template_util.h", |
| 87 "lib/union_accessor.h", | 87 "lib/union_accessor.h", |
| 88 "lib/validate_params.h", | 88 "lib/validate_params.h", |
| 89 "lib/validation_context.cc", | 89 "lib/validation_context.cc", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 ] | 155 ] |
| 156 | 156 |
| 157 public_deps = [ | 157 public_deps = [ |
| 158 ":bindings", | 158 ":bindings", |
| 159 "//third_party/WebKit/Source/wtf", | 159 "//third_party/WebKit/Source/wtf", |
| 160 ] | 160 ] |
| 161 | 161 |
| 162 public_configs = [ "//third_party/WebKit/Source:config" ] | 162 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 163 } | 163 } |
| 164 } | 164 } |
| OLD | NEW |