| 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 "associated_binding.h", | 8 "associated_binding.h", |
| 9 "associated_group.h", | 9 "associated_group.h", |
| 10 "associated_interface_ptr.h", | 10 "associated_interface_ptr.h", |
| 11 "associated_interface_ptr_info.h", | 11 "associated_interface_ptr_info.h", |
| 12 "associated_interface_request.h", | 12 "associated_interface_request.h", |
| 13 "binding.h", | 13 "binding.h", |
| 14 "interface_ptr.h", | 14 "interface_ptr.h", |
| 15 "interface_ptr_info.h", | 15 "interface_ptr_info.h", |
| 16 "interface_request.h", | 16 "interface_request.h", |
| 17 "lib/array_internal.cc", | 17 "lib/array_internal.cc", |
| 18 "lib/array_internal.h", | 18 "lib/array_internal.h", |
| 19 "lib/array_serialization.h", | 19 "lib/array_serialization.h", |
| 20 "lib/associated_group.cc", | 20 "lib/associated_group.cc", |
| 21 "lib/associated_interface_ptr_internal.h", | 21 "lib/associated_interface_ptr_state.h", |
| 22 "lib/binding_state.h", |
| 22 "lib/bindings_internal.h", | 23 "lib/bindings_internal.h", |
| 23 "lib/bindings_serialization.cc", | 24 "lib/bindings_serialization.cc", |
| 24 "lib/bindings_serialization.h", | 25 "lib/bindings_serialization.h", |
| 25 "lib/bounds_checker.cc", | 26 "lib/bounds_checker.cc", |
| 26 "lib/bounds_checker.h", | 27 "lib/bounds_checker.h", |
| 27 "lib/buffer.h", | 28 "lib/buffer.h", |
| 28 "lib/connector.cc", | 29 "lib/connector.cc", |
| 29 "lib/connector.h", | 30 "lib/connector.h", |
| 30 "lib/control_message_handler.cc", | 31 "lib/control_message_handler.cc", |
| 31 "lib/control_message_handler.h", | 32 "lib/control_message_handler.h", |
| 32 "lib/control_message_proxy.cc", | 33 "lib/control_message_proxy.cc", |
| 33 "lib/control_message_proxy.h", | 34 "lib/control_message_proxy.h", |
| 34 "lib/filter_chain.cc", | 35 "lib/filter_chain.cc", |
| 35 "lib/filter_chain.h", | 36 "lib/filter_chain.h", |
| 36 "lib/fixed_buffer.cc", | 37 "lib/fixed_buffer.cc", |
| 37 "lib/fixed_buffer.h", | 38 "lib/fixed_buffer.h", |
| 38 "lib/interface_endpoint_client.cc", | 39 "lib/interface_endpoint_client.cc", |
| 39 "lib/interface_endpoint_client.h", | 40 "lib/interface_endpoint_client.h", |
| 40 "lib/interface_id.h", | 41 "lib/interface_id.h", |
| 41 "lib/interface_ptr_internal.h", | 42 "lib/interface_ptr_state.h", |
| 42 "lib/map_data_internal.h", | 43 "lib/map_data_internal.h", |
| 43 "lib/map_internal.h", | 44 "lib/map_internal.h", |
| 44 "lib/map_serialization.h", | 45 "lib/map_serialization.h", |
| 45 "lib/message.cc", | 46 "lib/message.cc", |
| 46 "lib/message_builder.cc", | 47 "lib/message_builder.cc", |
| 47 "lib/message_builder.h", | 48 "lib/message_builder.h", |
| 48 "lib/message_filter.cc", | 49 "lib/message_filter.cc", |
| 49 "lib/message_header_validator.cc", | 50 "lib/message_header_validator.cc", |
| 50 "lib/message_header_validator.h", | 51 "lib/message_header_validator.h", |
| 51 "lib/message_internal.h", | 52 "lib/message_internal.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "lib/template_util.h", | 102 "lib/template_util.h", |
| 102 "lib/thread_checker.h", | 103 "lib/thread_checker.h", |
| 103 "lib/thread_checker_posix.cc", | 104 "lib/thread_checker_posix.cc", |
| 104 "lib/thread_checker_posix.h", | 105 "lib/thread_checker_posix.h", |
| 105 ] | 106 ] |
| 106 | 107 |
| 107 deps = [ | 108 deps = [ |
| 108 "//mojo/public/cpp/system", | 109 "//mojo/public/cpp/system", |
| 109 ] | 110 ] |
| 110 } | 111 } |
| OLD | NEW |