| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "lib/validate_params.h", | 109 "lib/validate_params.h", |
| 110 "lib/validation_context.cc", | 110 "lib/validation_context.cc", |
| 111 "lib/validation_context.h", | 111 "lib/validation_context.h", |
| 112 "lib/validation_errors.cc", | 112 "lib/validation_errors.cc", |
| 113 "lib/validation_errors.h", | 113 "lib/validation_errors.h", |
| 114 "lib/validation_util.cc", | 114 "lib/validation_util.cc", |
| 115 "lib/validation_util.h", | 115 "lib/validation_util.h", |
| 116 "map.h", | 116 "map.h", |
| 117 "map_data_view.h", | 117 "map_data_view.h", |
| 118 "map_traits.h", | 118 "map_traits.h", |
| 119 "map_traits_standard.h", | |
| 120 "map_traits_stl.h", | 119 "map_traits_stl.h", |
| 121 "message.h", | 120 "message.h", |
| 122 "message_header_validator.h", | 121 "message_header_validator.h", |
| 123 "native_enum.h", | 122 "native_enum.h", |
| 124 "native_struct.h", | 123 "native_struct.h", |
| 125 "native_struct_data_view.h", | 124 "native_struct_data_view.h", |
| 126 "no_interface.h", | 125 "no_interface.h", |
| 127 "pipe_control_message_handler.h", | 126 "pipe_control_message_handler.h", |
| 128 "pipe_control_message_handler_delegate.h", | 127 "pipe_control_message_handler_delegate.h", |
| 129 "pipe_control_message_proxy.h", | 128 "pipe_control_message_proxy.h", |
| 130 "scoped_interface_endpoint_handle.h", | 129 "scoped_interface_endpoint_handle.h", |
| 131 "stl_converters.h", | |
| 132 "string.h", | 130 "string.h", |
| 133 "string_data_view.h", | 131 "string_data_view.h", |
| 134 "string_traits.h", | 132 "string_traits.h", |
| 135 "string_traits_standard.h", | 133 "string_traits_standard.h", |
| 136 "string_traits_stl.h", | 134 "string_traits_stl.h", |
| 137 "string_traits_string16.h", | 135 "string_traits_string16.h", |
| 138 "string_traits_string_piece.h", | 136 "string_traits_string_piece.h", |
| 139 "strong_associated_binding.h", | 137 "strong_associated_binding.h", |
| 140 "strong_binding.h", | 138 "strong_binding.h", |
| 141 "struct_ptr.h", | 139 "struct_ptr.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 ] | 184 ] |
| 187 | 185 |
| 188 public_deps = [ | 186 public_deps = [ |
| 189 ":bindings", | 187 ":bindings", |
| 190 "//third_party/WebKit/Source/wtf", | 188 "//third_party/WebKit/Source/wtf", |
| 191 ] | 189 ] |
| 192 | 190 |
| 193 public_configs = [ "//third_party/WebKit/Source:config" ] | 191 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 194 } | 192 } |
| 195 } | 193 } |
| OLD | NEW |