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", |
69 "lib/union_accessor.h", | 71 "lib/union_accessor.h", |
70 "lib/validate_params.h", | 72 "lib/validate_params.h", |
71 "lib/validation_errors.cc", | 73 "lib/validation_errors.cc", |
72 "lib/validation_errors.h", | 74 "lib/validation_errors.h", |
73 "lib/validation_util.cc", | 75 "lib/validation_util.cc", |
74 "lib/validation_util.h", | 76 "lib/validation_util.h", |
75 "lib/value_traits.h", | 77 "lib/value_traits.h", |
76 "map.h", | 78 "map.h", |
77 "message.h", | 79 "message.h", |
78 "message_filter.h", | 80 "message_filter.h", |
(...skipping 29 matching lines...) Expand all Loading... |
108 "lib/shared_data.h", | 110 "lib/shared_data.h", |
109 "lib/shared_ptr.h", | 111 "lib/shared_ptr.h", |
110 "lib/template_util.h", | 112 "lib/template_util.h", |
111 ] | 113 ] |
112 | 114 |
113 deps = [ | 115 deps = [ |
114 "//base", | 116 "//base", |
115 "//mojo/public/cpp/system", | 117 "//mojo/public/cpp/system", |
116 ] | 118 ] |
117 } | 119 } |
OLD | NEW |