| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "lib/map_serialization.h", | 45 "lib/map_serialization.h", |
| 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/native_serialization.h", |
| 55 "lib/no_interface.cc", | 56 "lib/no_interface.cc", |
| 56 "lib/pickle_buffer.cc", | 57 "lib/pickle_buffer.cc", |
| 57 "lib/pickle_buffer.h", | 58 "lib/pickle_buffer.h", |
| 58 "lib/pipe_control_message_handler.cc", | 59 "lib/pipe_control_message_handler.cc", |
| 59 "lib/pipe_control_message_handler.h", | 60 "lib/pipe_control_message_handler.h", |
| 60 "lib/pipe_control_message_handler_delegate.h", | 61 "lib/pipe_control_message_handler_delegate.h", |
| 61 "lib/pipe_control_message_proxy.cc", | 62 "lib/pipe_control_message_proxy.cc", |
| 62 "lib/pipe_control_message_proxy.h", | 63 "lib/pipe_control_message_proxy.h", |
| 63 "lib/router.cc", | 64 "lib/router.cc", |
| 64 "lib/router.h", | 65 "lib/router.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "lib/template_util.h", | 107 "lib/template_util.h", |
| 107 "lib/thread_checker.h", | 108 "lib/thread_checker.h", |
| 108 "lib/thread_checker_posix.cc", | 109 "lib/thread_checker_posix.cc", |
| 109 "lib/thread_checker_posix.h", | 110 "lib/thread_checker_posix.h", |
| 110 ] | 111 ] |
| 111 | 112 |
| 112 deps = [ | 113 deps = [ |
| 113 "//mojo/public/cpp/system", | 114 "//mojo/public/cpp/system", |
| 114 ] | 115 ] |
| 115 } | 116 } |
| OLD | NEW |