| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "lib/pipe_control_message_handler.h", | 59 "lib/pipe_control_message_handler.h", |
| 60 "lib/pipe_control_message_handler_delegate.h", | 60 "lib/pipe_control_message_handler_delegate.h", |
| 61 "lib/pipe_control_message_proxy.cc", | 61 "lib/pipe_control_message_proxy.cc", |
| 62 "lib/pipe_control_message_proxy.h", | 62 "lib/pipe_control_message_proxy.h", |
| 63 "lib/router.cc", | 63 "lib/router.cc", |
| 64 "lib/router.h", | 64 "lib/router.h", |
| 65 "lib/scoped_interface_endpoint_handle.cc", | 65 "lib/scoped_interface_endpoint_handle.cc", |
| 66 "lib/scoped_interface_endpoint_handle.h", | 66 "lib/scoped_interface_endpoint_handle.h", |
| 67 "lib/string_serialization.cc", | 67 "lib/string_serialization.cc", |
| 68 "lib/string_serialization.h", | 68 "lib/string_serialization.h", |
| 69 "lib/sync_handle_watcher.cc", | |
| 70 "lib/sync_handle_watcher.h", | |
| 71 "lib/union_accessor.h", | 69 "lib/union_accessor.h", |
| 72 "lib/validate_params.h", | 70 "lib/validate_params.h", |
| 73 "lib/validation_errors.cc", | 71 "lib/validation_errors.cc", |
| 74 "lib/validation_errors.h", | 72 "lib/validation_errors.h", |
| 75 "lib/validation_util.cc", | 73 "lib/validation_util.cc", |
| 76 "lib/validation_util.h", | 74 "lib/validation_util.h", |
| 77 "lib/value_traits.h", | 75 "lib/value_traits.h", |
| 78 "map.h", | 76 "map.h", |
| 79 "message.h", | 77 "message.h", |
| 80 "message_filter.h", | 78 "message_filter.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 110 "lib/shared_data.h", | 108 "lib/shared_data.h", |
| 111 "lib/shared_ptr.h", | 109 "lib/shared_ptr.h", |
| 112 "lib/template_util.h", | 110 "lib/template_util.h", |
| 113 ] | 111 ] |
| 114 | 112 |
| 115 deps = [ | 113 deps = [ |
| 116 "//base", | 114 "//base", |
| 117 "//mojo/public/cpp/system", | 115 "//mojo/public/cpp/system", |
| 118 ] | 116 ] |
| 119 } | 117 } |
| OLD | NEW |