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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 "message.h", | 120 "message.h", |
121 "message_header_validator.h", | 121 "message_header_validator.h", |
122 "native_enum.h", | 122 "native_enum.h", |
123 "native_struct.h", | 123 "native_struct.h", |
124 "native_struct_data_view.h", | 124 "native_struct_data_view.h", |
125 "no_interface.h", | 125 "no_interface.h", |
126 "pipe_control_message_handler.h", | 126 "pipe_control_message_handler.h", |
127 "pipe_control_message_handler_delegate.h", | 127 "pipe_control_message_handler_delegate.h", |
128 "pipe_control_message_proxy.h", | 128 "pipe_control_message_proxy.h", |
129 "scoped_interface_endpoint_handle.h", | 129 "scoped_interface_endpoint_handle.h", |
130 "string.h", | |
131 "string_data_view.h", | 130 "string_data_view.h", |
132 "string_traits.h", | 131 "string_traits.h", |
133 "string_traits_standard.h", | |
134 "string_traits_stl.h", | 132 "string_traits_stl.h", |
135 "string_traits_string16.h", | 133 "string_traits_string16.h", |
136 "string_traits_string_piece.h", | 134 "string_traits_string_piece.h", |
137 "strong_associated_binding.h", | 135 "strong_associated_binding.h", |
138 "strong_binding.h", | 136 "strong_binding.h", |
139 "struct_ptr.h", | 137 "struct_ptr.h", |
140 "sync_call_restrictions.h", | 138 "sync_call_restrictions.h", |
141 "sync_handle_registry.h", | 139 "sync_handle_registry.h", |
142 "sync_handle_watcher.h", | 140 "sync_handle_watcher.h", |
143 "thread_safe_interface_ptr.h", | 141 "thread_safe_interface_ptr.h", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 ] | 182 ] |
185 | 183 |
186 public_deps = [ | 184 public_deps = [ |
187 ":bindings", | 185 ":bindings", |
188 "//third_party/WebKit/Source/wtf", | 186 "//third_party/WebKit/Source/wtf", |
189 ] | 187 ] |
190 | 188 |
191 public_configs = [ "//third_party/WebKit/Source:config" ] | 189 public_configs = [ "//third_party/WebKit/Source:config" ] |
192 } | 190 } |
193 } | 191 } |
OLD | NEW |