| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "lib/native_enum_data.h", | 86 "lib/native_enum_data.h", |
| 87 "lib/native_enum_serialization.h", | 87 "lib/native_enum_serialization.h", |
| 88 "lib/native_struct.cc", | 88 "lib/native_struct.cc", |
| 89 "lib/native_struct_data.cc", | 89 "lib/native_struct_data.cc", |
| 90 "lib/native_struct_data.h", | 90 "lib/native_struct_data.h", |
| 91 "lib/native_struct_serialization.cc", | 91 "lib/native_struct_serialization.cc", |
| 92 "lib/native_struct_serialization.h", | 92 "lib/native_struct_serialization.h", |
| 93 "lib/no_interface.cc", | 93 "lib/no_interface.cc", |
| 94 "lib/pipe_control_message_handler.cc", | 94 "lib/pipe_control_message_handler.cc", |
| 95 "lib/pipe_control_message_proxy.cc", | 95 "lib/pipe_control_message_proxy.cc", |
| 96 "lib/router.cc", | |
| 97 "lib/router.h", | |
| 98 "lib/scoped_interface_endpoint_handle.cc", | 96 "lib/scoped_interface_endpoint_handle.cc", |
| 99 "lib/serialization.h", | 97 "lib/serialization.h", |
| 100 "lib/serialization_context.cc", | 98 "lib/serialization_context.cc", |
| 101 "lib/serialization_context.h", | 99 "lib/serialization_context.h", |
| 102 "lib/serialization_forward.h", | 100 "lib/serialization_forward.h", |
| 103 "lib/serialization_util.h", | 101 "lib/serialization_util.h", |
| 104 "lib/string_serialization.h", | 102 "lib/string_serialization.h", |
| 105 "lib/string_traits_string16.cc", | 103 "lib/string_traits_string16.cc", |
| 106 "lib/sync_call_restrictions.cc", | 104 "lib/sync_call_restrictions.cc", |
| 107 "lib/sync_handle_registry.cc", | 105 "lib/sync_handle_registry.cc", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 ] | 188 ] |
| 191 | 189 |
| 192 public_deps = [ | 190 public_deps = [ |
| 193 ":bindings", | 191 ":bindings", |
| 194 "//third_party/WebKit/Source/wtf", | 192 "//third_party/WebKit/Source/wtf", |
| 195 ] | 193 ] |
| 196 | 194 |
| 197 public_configs = [ "//third_party/WebKit/Source:config" ] | 195 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 198 } | 196 } |
| 199 } | 197 } |
| OLD | NEW |