| 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", |
| 11 "associated_interface_ptr_info.h", | 11 "associated_interface_ptr_info.h", |
| 12 "associated_interface_request.h", | 12 "associated_interface_request.h", |
| 13 "binding.h", | 13 "binding.h", |
| 14 "binding_set.h", |
| 14 "interface_ptr.h", | 15 "interface_ptr.h", |
| 15 "interface_ptr_info.h", | 16 "interface_ptr_info.h", |
| 17 "interface_ptr_set.h", |
| 16 "interface_request.h", | 18 "interface_request.h", |
| 17 "lib/array_internal.cc", | 19 "lib/array_internal.cc", |
| 18 "lib/array_internal.h", | 20 "lib/array_internal.h", |
| 19 "lib/array_serialization.h", | 21 "lib/array_serialization.h", |
| 20 "lib/associated_group.cc", | 22 "lib/associated_group.cc", |
| 21 "lib/associated_interface_ptr_state.h", | 23 "lib/associated_interface_ptr_state.h", |
| 22 "lib/binding_state.h", | 24 "lib/binding_state.h", |
| 23 "lib/bindings_internal.h", | 25 "lib/bindings_internal.h", |
| 24 "lib/bindings_serialization.cc", | 26 "lib/bindings_serialization.cc", |
| 25 "lib/bindings_serialization.h", | 27 "lib/bindings_serialization.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "map.h", | 80 "map.h", |
| 79 "message.h", | 81 "message.h", |
| 80 "message_filter.h", | 82 "message_filter.h", |
| 81 "no_interface.h", | 83 "no_interface.h", |
| 82 "stl_converters.h", | 84 "stl_converters.h", |
| 83 "string.h", | 85 "string.h", |
| 84 "strong_binding.h", | 86 "strong_binding.h", |
| 85 "struct_ptr.h", | 87 "struct_ptr.h", |
| 86 "struct_traits.h", | 88 "struct_traits.h", |
| 87 "type_converter.h", | 89 "type_converter.h", |
| 88 "weak_binding_set.h", | |
| 89 "weak_interface_ptr_set.h", | |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 public_deps = [ | 92 public_deps = [ |
| 93 ":callback", | 93 ":callback", |
| 94 "//base", | 94 "//base", |
| 95 "//ipc:param_traits", | 95 "//ipc:param_traits", |
| 96 "//mojo/public/cpp/system", | 96 "//mojo/public/cpp/system", |
| 97 ] | 97 ] |
| 98 | 98 |
| 99 deps = [ | 99 deps = [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 110 "lib/shared_data.h", | 110 "lib/shared_data.h", |
| 111 "lib/shared_ptr.h", | 111 "lib/shared_ptr.h", |
| 112 "lib/template_util.h", | 112 "lib/template_util.h", |
| 113 ] | 113 ] |
| 114 | 114 |
| 115 deps = [ | 115 deps = [ |
| 116 "//base", | 116 "//base", |
| 117 "//mojo/public/cpp/system", | 117 "//mojo/public/cpp/system", |
| 118 ] | 118 ] |
| 119 } | 119 } |
| OLD | NEW |