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