| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "string_traits_standard.h", | 137 "string_traits_standard.h", |
| 138 "string_traits_stl.h", | 138 "string_traits_stl.h", |
| 139 "string_traits_string16.h", | 139 "string_traits_string16.h", |
| 140 "string_traits_string_piece.h", | 140 "string_traits_string_piece.h", |
| 141 "strong_associated_binding.h", | 141 "strong_associated_binding.h", |
| 142 "strong_binding.h", | 142 "strong_binding.h", |
| 143 "struct_ptr.h", | 143 "struct_ptr.h", |
| 144 "sync_call_restrictions.h", | 144 "sync_call_restrictions.h", |
| 145 "sync_handle_registry.h", | 145 "sync_handle_registry.h", |
| 146 "sync_handle_watcher.h", | 146 "sync_handle_watcher.h", |
| 147 "thread_safe_interface_ptr.h", |
| 147 "type_converter.h", | 148 "type_converter.h", |
| 148 "union_traits.h", | 149 "union_traits.h", |
| 149 ] | 150 ] |
| 150 | 151 |
| 151 public_deps = [ | 152 public_deps = [ |
| 152 ":struct_traits", | 153 ":struct_traits", |
| 153 "//base", | 154 "//base", |
| 154 "//ipc:param_traits", | 155 "//ipc:param_traits", |
| 155 "//mojo/public/cpp/system", | 156 "//mojo/public/cpp/system", |
| 156 ] | 157 ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 ] | 190 ] |
| 190 | 191 |
| 191 public_deps = [ | 192 public_deps = [ |
| 192 ":bindings", | 193 ":bindings", |
| 193 "//third_party/WebKit/Source/wtf", | 194 "//third_party/WebKit/Source/wtf", |
| 194 ] | 195 ] |
| 195 | 196 |
| 196 public_configs = [ "//third_party/WebKit/Source:config" ] | 197 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 197 } | 198 } |
| 198 } | 199 } |
| OLD | NEW |