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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 ] | 145 ] |
146 } | 146 } |
147 | 147 |
148 if (!is_ios) { | 148 if (!is_ios) { |
149 source_set("wtf_support") { | 149 source_set("wtf_support") { |
150 sources = [ | 150 sources = [ |
151 "array_traits_wtf.h", | 151 "array_traits_wtf.h", |
152 "array_traits_wtf_vector.h", | 152 "array_traits_wtf_vector.h", |
153 "lib/string_traits_wtf.cc", | 153 "lib/string_traits_wtf.cc", |
154 "lib/wtf_serialization.h", | 154 "lib/wtf_serialization.h", |
| 155 "map_traits_wtf.h", |
155 "string_traits_wtf.h", | 156 "string_traits_wtf.h", |
156 "wtf_array.h", | 157 "wtf_array.h", |
| 158 "wtf_map.h", |
157 ] | 159 ] |
158 | 160 |
159 public_deps = [ | 161 public_deps = [ |
160 ":bindings", | 162 ":bindings", |
161 "//third_party/WebKit/Source/wtf", | 163 "//third_party/WebKit/Source/wtf", |
162 ] | 164 ] |
163 | 165 |
164 public_configs = [ "//third_party/WebKit/Source:config" ] | 166 public_configs = [ "//third_party/WebKit/Source:config" ] |
165 } | 167 } |
166 } | 168 } |
OLD | NEW |