| 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 21 matching lines...) Expand all Loading... |
| 32 "associated_interface_ptr.h", | 32 "associated_interface_ptr.h", |
| 33 "associated_interface_ptr_info.h", | 33 "associated_interface_ptr_info.h", |
| 34 "associated_interface_request.h", | 34 "associated_interface_request.h", |
| 35 "binding.h", | 35 "binding.h", |
| 36 "binding_set.h", | 36 "binding_set.h", |
| 37 "bindings_export.h", | 37 "bindings_export.h", |
| 38 "clone_traits.h", | 38 "clone_traits.h", |
| 39 "connection_error_callback.h", | 39 "connection_error_callback.h", |
| 40 "connector.h", | 40 "connector.h", |
| 41 "disconnect_reason.h", | 41 "disconnect_reason.h", |
| 42 "equals_traits.h", |
| 42 "filter_chain.h", | 43 "filter_chain.h", |
| 43 "interface_data_view.h", | 44 "interface_data_view.h", |
| 44 "interface_endpoint_client.h", | 45 "interface_endpoint_client.h", |
| 45 "interface_endpoint_controller.h", | 46 "interface_endpoint_controller.h", |
| 46 "interface_id.h", | 47 "interface_id.h", |
| 47 "interface_ptr.h", | 48 "interface_ptr.h", |
| 48 "interface_ptr_info.h", | 49 "interface_ptr_info.h", |
| 49 "interface_ptr_set.h", | 50 "interface_ptr_set.h", |
| 50 "interface_request.h", | 51 "interface_request.h", |
| 51 "lib/array_internal.cc", | 52 "lib/array_internal.cc", |
| 52 "lib/array_internal.h", | 53 "lib/array_internal.h", |
| 53 "lib/array_serialization.h", | 54 "lib/array_serialization.h", |
| 54 "lib/associated_binding.cc", | 55 "lib/associated_binding.cc", |
| 55 "lib/associated_group.cc", | 56 "lib/associated_group.cc", |
| 56 "lib/associated_group_controller.cc", | 57 "lib/associated_group_controller.cc", |
| 57 "lib/associated_interface_ptr.cc", | 58 "lib/associated_interface_ptr.cc", |
| 58 "lib/associated_interface_ptr_state.h", | 59 "lib/associated_interface_ptr_state.h", |
| 59 "lib/binding_state.cc", | 60 "lib/binding_state.cc", |
| 60 "lib/binding_state.h", | 61 "lib/binding_state.h", |
| 61 "lib/bindings_internal.h", | 62 "lib/bindings_internal.h", |
| 62 "lib/buffer.h", | 63 "lib/buffer.h", |
| 63 "lib/connector.cc", | 64 "lib/connector.cc", |
| 64 "lib/control_message_handler.cc", | 65 "lib/control_message_handler.cc", |
| 65 "lib/control_message_handler.h", | 66 "lib/control_message_handler.h", |
| 66 "lib/control_message_proxy.cc", | 67 "lib/control_message_proxy.cc", |
| 67 "lib/control_message_proxy.h", | 68 "lib/control_message_proxy.h", |
| 68 "lib/equals_traits.h", | |
| 69 "lib/filter_chain.cc", | 69 "lib/filter_chain.cc", |
| 70 "lib/fixed_buffer.cc", | 70 "lib/fixed_buffer.cc", |
| 71 "lib/fixed_buffer.h", | 71 "lib/fixed_buffer.h", |
| 72 "lib/handle_interface_serialization.h", | 72 "lib/handle_interface_serialization.h", |
| 73 "lib/hash_util.h", | 73 "lib/hash_util.h", |
| 74 "lib/interface_endpoint_client.cc", | 74 "lib/interface_endpoint_client.cc", |
| 75 "lib/interface_ptr_state.h", | 75 "lib/interface_ptr_state.h", |
| 76 "lib/map_data_internal.h", | 76 "lib/map_data_internal.h", |
| 77 "lib/map_serialization.h", | 77 "lib/map_serialization.h", |
| 78 "lib/may_auto_lock.h", | 78 "lib/may_auto_lock.h", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 ] | 184 ] |
| 185 | 185 |
| 186 public_deps = [ | 186 public_deps = [ |
| 187 ":bindings", | 187 ":bindings", |
| 188 "//third_party/WebKit/Source/platform/wtf", | 188 "//third_party/WebKit/Source/platform/wtf", |
| 189 ] | 189 ] |
| 190 | 190 |
| 191 public_configs = [ "//third_party/WebKit/Source:config" ] | 191 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 192 } | 192 } |
| 193 } | 193 } |
| OLD | NEW |