| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 sources = [ | 163 sources = [ |
| 164 "enum_traits.h", | 164 "enum_traits.h", |
| 165 "struct_traits.h", | 165 "struct_traits.h", |
| 166 ] | 166 ] |
| 167 } | 167 } |
| 168 | 168 |
| 169 if (!is_ios) { | 169 if (!is_ios) { |
| 170 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. | 170 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. |
| 171 source_set("wtf_support") { | 171 source_set("wtf_support") { |
| 172 sources = [ | 172 sources = [ |
| 173 "array_traits_wtf.h", | |
| 174 "array_traits_wtf_vector.h", | 173 "array_traits_wtf_vector.h", |
| 175 "lib/string_traits_wtf.cc", | 174 "lib/string_traits_wtf.cc", |
| 176 "lib/wtf_clone_equals_util.h", | 175 "lib/wtf_clone_equals_util.h", |
| 177 "lib/wtf_hash_util.h", | 176 "lib/wtf_hash_util.h", |
| 178 "lib/wtf_serialization.h", | 177 "lib/wtf_serialization.h", |
| 179 "map_traits_wtf_hash_map.h", | 178 "map_traits_wtf_hash_map.h", |
| 180 "string_traits_wtf.h", | 179 "string_traits_wtf.h", |
| 181 "wtf_array.h", | |
| 182 ] | 180 ] |
| 183 | 181 |
| 184 public_deps = [ | 182 public_deps = [ |
| 185 ":bindings", | 183 ":bindings", |
| 186 "//third_party/WebKit/Source/wtf", | 184 "//third_party/WebKit/Source/wtf", |
| 187 ] | 185 ] |
| 188 | 186 |
| 189 public_configs = [ "//third_party/WebKit/Source:config" ] | 187 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 190 } | 188 } |
| 191 } | 189 } |
| OLD | NEW |