| 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", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "lib/message.cc", | 46 "lib/message.cc", |
| 47 "lib/message_builder.cc", | 47 "lib/message_builder.cc", |
| 48 "lib/message_builder.h", | 48 "lib/message_builder.h", |
| 49 "lib/message_filter.cc", | 49 "lib/message_filter.cc", |
| 50 "lib/message_header_validator.cc", | 50 "lib/message_header_validator.cc", |
| 51 "lib/message_header_validator.h", | 51 "lib/message_header_validator.h", |
| 52 "lib/message_internal.h", | 52 "lib/message_internal.h", |
| 53 "lib/multiplex_router.cc", | 53 "lib/multiplex_router.cc", |
| 54 "lib/multiplex_router.h", | 54 "lib/multiplex_router.h", |
| 55 "lib/no_interface.cc", | 55 "lib/no_interface.cc", |
| 56 "lib/pickle_buffer.cc", |
| 57 "lib/pickle_buffer.h", |
| 56 "lib/pipe_control_message_handler.cc", | 58 "lib/pipe_control_message_handler.cc", |
| 57 "lib/pipe_control_message_handler.h", | 59 "lib/pipe_control_message_handler.h", |
| 58 "lib/pipe_control_message_handler_delegate.h", | 60 "lib/pipe_control_message_handler_delegate.h", |
| 59 "lib/pipe_control_message_proxy.cc", | 61 "lib/pipe_control_message_proxy.cc", |
| 60 "lib/pipe_control_message_proxy.h", | 62 "lib/pipe_control_message_proxy.h", |
| 61 "lib/router.cc", | 63 "lib/router.cc", |
| 62 "lib/router.h", | 64 "lib/router.h", |
| 63 "lib/scoped_interface_endpoint_handle.cc", | 65 "lib/scoped_interface_endpoint_handle.cc", |
| 64 "lib/scoped_interface_endpoint_handle.h", | 66 "lib/scoped_interface_endpoint_handle.h", |
| 65 "lib/string_serialization.cc", | 67 "lib/string_serialization.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 76 "message_filter.h", | 78 "message_filter.h", |
| 77 "no_interface.h", | 79 "no_interface.h", |
| 78 "string.h", | 80 "string.h", |
| 79 "strong_binding.h", | 81 "strong_binding.h", |
| 80 "struct_ptr.h", | 82 "struct_ptr.h", |
| 81 "type_converter.h", | 83 "type_converter.h", |
| 82 ] | 84 ] |
| 83 | 85 |
| 84 public_deps = [ | 86 public_deps = [ |
| 85 ":callback", | 87 ":callback", |
| 88 "//base", |
| 86 "//mojo/public/cpp/system", | 89 "//mojo/public/cpp/system", |
| 87 ] | 90 ] |
| 88 | 91 |
| 89 deps = [ | 92 deps = [ |
| 90 "//base", | 93 "//base", |
| 91 "//mojo/public/cpp/environment", | 94 "//mojo/public/cpp/environment", |
| 92 "//mojo/public/interfaces/bindings:bindings_cpp_sources", | 95 "//mojo/public/interfaces/bindings:bindings_cpp_sources", |
| 93 ] | 96 ] |
| 94 } | 97 } |
| 95 | 98 |
| 96 source_set("callback") { | 99 source_set("callback") { |
| 97 sources = [ | 100 sources = [ |
| 98 "callback.h", | 101 "callback.h", |
| 99 "lib/callback_internal.h", | 102 "lib/callback_internal.h", |
| 100 "lib/shared_data.h", | 103 "lib/shared_data.h", |
| 101 "lib/shared_ptr.h", | 104 "lib/shared_ptr.h", |
| 102 "lib/template_util.h", | 105 "lib/template_util.h", |
| 103 ] | 106 ] |
| 104 | 107 |
| 105 deps = [ | 108 deps = [ |
| 106 "//base", | 109 "//base", |
| 107 "//mojo/public/cpp/system", | 110 "//mojo/public/cpp/system", |
| 108 ] | 111 ] |
| 109 } | 112 } |
| OLD | NEW |