| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "lib/associated_interface_ptr_state.h", | 59 "lib/associated_interface_ptr_state.h", |
| 60 "lib/binding_state.cc", | 60 "lib/binding_state.cc", |
| 61 "lib/binding_state.h", | 61 "lib/binding_state.h", |
| 62 "lib/bindings_internal.h", | 62 "lib/bindings_internal.h", |
| 63 "lib/buffer.h", | 63 "lib/buffer.h", |
| 64 "lib/connector.cc", | 64 "lib/connector.cc", |
| 65 "lib/control_message_handler.cc", | 65 "lib/control_message_handler.cc", |
| 66 "lib/control_message_handler.h", | 66 "lib/control_message_handler.h", |
| 67 "lib/control_message_proxy.cc", | 67 "lib/control_message_proxy.cc", |
| 68 "lib/control_message_proxy.h", | 68 "lib/control_message_proxy.h", |
| 69 "lib/deque.h", |
| 69 "lib/filter_chain.cc", | 70 "lib/filter_chain.cc", |
| 70 "lib/fixed_buffer.cc", | 71 "lib/fixed_buffer.cc", |
| 71 "lib/fixed_buffer.h", | 72 "lib/fixed_buffer.h", |
| 72 "lib/handle_interface_serialization.h", | 73 "lib/handle_interface_serialization.h", |
| 73 "lib/hash_util.h", | 74 "lib/hash_util.h", |
| 74 "lib/interface_endpoint_client.cc", | 75 "lib/interface_endpoint_client.cc", |
| 75 "lib/interface_ptr_state.h", | 76 "lib/interface_ptr_state.h", |
| 76 "lib/map_data_internal.h", | 77 "lib/map_data_internal.h", |
| 77 "lib/map_serialization.h", | 78 "lib/map_serialization.h", |
| 78 "lib/may_auto_lock.h", | 79 "lib/may_auto_lock.h", |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 ] | 185 ] |
| 185 | 186 |
| 186 public_deps = [ | 187 public_deps = [ |
| 187 ":bindings", | 188 ":bindings", |
| 188 "//third_party/WebKit/Source/platform/wtf", | 189 "//third_party/WebKit/Source/platform/wtf", |
| 189 ] | 190 ] |
| 190 | 191 |
| 191 public_configs = [ "//third_party/WebKit/Source:config" ] | 192 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 192 } | 193 } |
| 193 } | 194 } |
| OLD | NEW |