| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 | 138 |
| 139 source_set("struct_traits") { | 139 source_set("struct_traits") { |
| 140 sources = [ | 140 sources = [ |
| 141 "struct_traits.h", | 141 "struct_traits.h", |
| 142 ] | 142 ] |
| 143 } | 143 } |
| 144 | 144 |
| 145 source_set("wtf_support") { | 145 source_set("wtf_support") { |
| 146 sources = [ | 146 sources = [ |
| 147 "array_traits_wtf.h", | 147 "array_traits_wtf.h", |
| 148 "array_traits_wtf_vector.h", |
| 148 "lib/string_traits_wtf.cc", | 149 "lib/string_traits_wtf.cc", |
| 149 "lib/wtf_serialization.h", | 150 "lib/wtf_serialization.h", |
| 150 "string_traits_wtf.h", | 151 "string_traits_wtf.h", |
| 151 "wtf_array.h", | 152 "wtf_array.h", |
| 152 ] | 153 ] |
| 153 | 154 |
| 154 public_deps = [ | 155 public_deps = [ |
| 155 ":bindings", | 156 ":bindings", |
| 156 "//third_party/WebKit/Source/wtf", | 157 "//third_party/WebKit/Source/wtf", |
| 157 ] | 158 ] |
| 158 | 159 |
| 159 public_configs = [ "//third_party/WebKit/Source:config" ] | 160 public_configs = [ "//third_party/WebKit/Source:config" ] |
| 160 } | 161 } |
| OLD | NEW |