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", |
| 9 "associated_group.h", |
| 10 "associated_interface_ptr.h", |
8 "associated_interface_ptr_info.h", | 11 "associated_interface_ptr_info.h", |
9 "associated_interface_request.h", | 12 "associated_interface_request.h", |
10 "binding.h", | 13 "binding.h", |
11 "interface_ptr.h", | 14 "interface_ptr.h", |
12 "interface_ptr_info.h", | 15 "interface_ptr_info.h", |
13 "interface_request.h", | 16 "interface_request.h", |
14 "lib/array_internal.cc", | 17 "lib/array_internal.cc", |
15 "lib/array_internal.h", | 18 "lib/array_internal.h", |
16 "lib/array_serialization.h", | 19 "lib/array_serialization.h", |
| 20 "lib/associated_group.cc", |
| 21 "lib/associated_interface_ptr_internal.h", |
17 "lib/bindings_internal.h", | 22 "lib/bindings_internal.h", |
18 "lib/bindings_serialization.cc", | 23 "lib/bindings_serialization.cc", |
19 "lib/bindings_serialization.h", | 24 "lib/bindings_serialization.h", |
20 "lib/bounds_checker.cc", | 25 "lib/bounds_checker.cc", |
21 "lib/bounds_checker.h", | 26 "lib/bounds_checker.h", |
22 "lib/buffer.h", | 27 "lib/buffer.h", |
23 "lib/connector.cc", | 28 "lib/connector.cc", |
24 "lib/connector.h", | 29 "lib/connector.h", |
25 "lib/control_message_handler.cc", | 30 "lib/control_message_handler.cc", |
26 "lib/control_message_handler.h", | 31 "lib/control_message_handler.h", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 "lib/template_util.h", | 101 "lib/template_util.h", |
97 "lib/thread_checker.h", | 102 "lib/thread_checker.h", |
98 "lib/thread_checker_posix.cc", | 103 "lib/thread_checker_posix.cc", |
99 "lib/thread_checker_posix.h", | 104 "lib/thread_checker_posix.h", |
100 ] | 105 ] |
101 | 106 |
102 deps = [ | 107 deps = [ |
103 "//mojo/public/cpp/system", | 108 "//mojo/public/cpp/system", |
104 ] | 109 ] |
105 } | 110 } |
OLD | NEW |