| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "interface_endpoint_client.h", | 43 "interface_endpoint_client.h", |
| 44 "interface_endpoint_controller.h", | 44 "interface_endpoint_controller.h", |
| 45 "interface_id.h", | 45 "interface_id.h", |
| 46 "interface_ptr.h", | 46 "interface_ptr.h", |
| 47 "interface_ptr_info.h", | 47 "interface_ptr_info.h", |
| 48 "interface_ptr_set.h", | 48 "interface_ptr_set.h", |
| 49 "interface_request.h", | 49 "interface_request.h", |
| 50 "lib/array_internal.cc", | 50 "lib/array_internal.cc", |
| 51 "lib/array_internal.h", | 51 "lib/array_internal.h", |
| 52 "lib/array_serialization.h", | 52 "lib/array_serialization.h", |
| 53 "lib/associated_binding.cc", |
| 53 "lib/associated_group.cc", | 54 "lib/associated_group.cc", |
| 54 "lib/associated_group_controller.cc", | 55 "lib/associated_group_controller.cc", |
| 55 "lib/associated_interface_ptr_state.h", | 56 "lib/associated_interface_ptr_state.h", |
| 56 "lib/binding_state.cc", | 57 "lib/binding_state.cc", |
| 57 "lib/binding_state.h", | 58 "lib/binding_state.h", |
| 58 "lib/bindings_internal.h", | 59 "lib/bindings_internal.h", |
| 59 "lib/buffer.h", | 60 "lib/buffer.h", |
| 60 "lib/clone_equals_util.h", | 61 "lib/clone_equals_util.h", |
| 61 "lib/connector.cc", | 62 "lib/connector.cc", |
| 62 "lib/control_message_handler.cc", | 63 "lib/control_message_handler.cc", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 ] | 178 ] |
| 178 | 179 |
| 179 public_deps = [ | 180 public_deps = [ |
| 180 ":bindings", | 181 ":bindings", |
| 181 "//third_party/WebKit/Source/wtf", | 182 "//third_party/WebKit/Source/wtf", |
| 182 ] | 183 ] |
| 183 | 184 |
| 184 public_configs = [ "//third_party/WebKit/Source:config" ] | 185 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 185 } | 186 } |
| 186 } | 187 } |
| OLD | NEW |