| 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 source_set("bindings") { | 5 source_set("bindings") { |
| 6 sources = [ | 6 sources = [ |
| 7 "array.h", | 7 "array.h", |
| 8 "array_traits.h", | 8 "array_traits.h", |
| 9 "array_traits_standard.h", | 9 "array_traits_standard.h", |
| 10 "array_traits_stl.h", | 10 "array_traits_stl.h", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 ] | 141 ] |
| 142 } | 142 } |
| 143 | 143 |
| 144 source_set("struct_traits") { | 144 source_set("struct_traits") { |
| 145 sources = [ | 145 sources = [ |
| 146 "struct_traits.h", | 146 "struct_traits.h", |
| 147 ] | 147 ] |
| 148 } | 148 } |
| 149 | 149 |
| 150 if (!is_ios) { | 150 if (!is_ios) { |
| 151 # TODO(yzshen): crbug.com/617718 Consider moving this into blink. |
| 151 source_set("wtf_support") { | 152 source_set("wtf_support") { |
| 152 sources = [ | 153 sources = [ |
| 153 "array_traits_wtf.h", | 154 "array_traits_wtf.h", |
| 154 "array_traits_wtf_vector.h", | 155 "array_traits_wtf_vector.h", |
| 155 "lib/string_traits_wtf.cc", | 156 "lib/string_traits_wtf.cc", |
| 156 "lib/wtf_serialization.h", | 157 "lib/wtf_serialization.h", |
| 157 "string_traits_wtf.h", | 158 "string_traits_wtf.h", |
| 158 "wtf_array.h", | 159 "wtf_array.h", |
| 159 ] | 160 ] |
| 160 | 161 |
| 161 public_deps = [ | 162 public_deps = [ |
| 162 ":bindings", | 163 ":bindings", |
| 163 "//third_party/WebKit/Source/wtf", | 164 "//third_party/WebKit/Source/wtf", |
| 164 ] | 165 ] |
| 165 | 166 |
| 166 public_configs = [ "//third_party/WebKit/Source:config" ] | 167 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 167 } | 168 } |
| 168 } | 169 } |
| OLD | NEW |