| 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 interfaces_bindings_gen_dir = "$root_gen_dir/mojo/public/interfaces/bindings" | 5 interfaces_bindings_gen_dir = "$root_gen_dir/mojo/public/interfaces/bindings" |
| 6 | 6 |
| 7 component("bindings") { | 7 component("bindings") { |
| 8 sources = [ | 8 sources = [ |
| 9 # Normally, targets should depend on the source_sets generated by mojom | 9 # Normally, targets should depend on the source_sets generated by mojom |
| 10 # targets. However, the generated source_sets use portions of the bindings | 10 # targets. However, the generated source_sets use portions of the bindings |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "map_traits.h", | 117 "map_traits.h", |
| 118 "map_traits_stl.h", | 118 "map_traits_stl.h", |
| 119 "message.h", | 119 "message.h", |
| 120 "message_header_validator.h", | 120 "message_header_validator.h", |
| 121 "native_enum.h", | 121 "native_enum.h", |
| 122 "native_struct.h", | 122 "native_struct.h", |
| 123 "native_struct_data_view.h", | 123 "native_struct_data_view.h", |
| 124 "pipe_control_message_handler.h", | 124 "pipe_control_message_handler.h", |
| 125 "pipe_control_message_handler_delegate.h", | 125 "pipe_control_message_handler_delegate.h", |
| 126 "pipe_control_message_proxy.h", | 126 "pipe_control_message_proxy.h", |
| 127 "raw_ptr_impl_ref_traits.h", |
| 127 "scoped_interface_endpoint_handle.h", | 128 "scoped_interface_endpoint_handle.h", |
| 128 "string_data_view.h", | 129 "string_data_view.h", |
| 129 "string_traits.h", | 130 "string_traits.h", |
| 130 "string_traits_stl.h", | 131 "string_traits_stl.h", |
| 131 "string_traits_string16.h", | 132 "string_traits_string16.h", |
| 132 "string_traits_string_piece.h", | 133 "string_traits_string_piece.h", |
| 133 "strong_associated_binding.h", | 134 "strong_associated_binding.h", |
| 134 "strong_binding.h", | 135 "strong_binding.h", |
| 136 "strong_binding_set.h", |
| 135 "struct_ptr.h", | 137 "struct_ptr.h", |
| 136 "sync_call_restrictions.h", | 138 "sync_call_restrictions.h", |
| 137 "sync_handle_registry.h", | 139 "sync_handle_registry.h", |
| 138 "sync_handle_watcher.h", | 140 "sync_handle_watcher.h", |
| 139 "thread_safe_interface_ptr.h", | 141 "thread_safe_interface_ptr.h", |
| 140 "type_converter.h", | 142 "type_converter.h", |
| 141 "union_traits.h", | 143 "union_traits.h", |
| 144 "unique_ptr_impl_ref_traits.h", |
| 142 ] | 145 ] |
| 143 | 146 |
| 144 public_deps = [ | 147 public_deps = [ |
| 145 ":struct_traits", | 148 ":struct_traits", |
| 146 "//base", | 149 "//base", |
| 147 "//ipc:param_traits", | 150 "//ipc:param_traits", |
| 148 "//mojo/public/cpp/system", | 151 "//mojo/public/cpp/system", |
| 149 ] | 152 ] |
| 150 | 153 |
| 151 deps = [ | 154 deps = [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 178 ] | 181 ] |
| 179 | 182 |
| 180 public_deps = [ | 183 public_deps = [ |
| 181 ":bindings", | 184 ":bindings", |
| 182 "//third_party/WebKit/Source/wtf", | 185 "//third_party/WebKit/Source/wtf", |
| 183 ] | 186 ] |
| 184 | 187 |
| 185 public_configs = [ "//third_party/WebKit/Source:config" ] | 188 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 186 } | 189 } |
| 187 } | 190 } |
| OLD | NEW |