Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: third_party/WebKit/Source/platform/wtf/BUILD.gn

Issue 2768063003: Move files in wtf/ to platform/wtf/ (Part 11). (Closed)
Patch Set: Rebase. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBuffer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 # The below is a temporary setup during the WTF migration project: 5 # The below is a temporary setup during the WTF migration project:
6 # https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gYC AAJ 6 # https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gYC AAJ
7 # 7 #
8 # We are moving wtf/ files to platform/wtf/ incrementally, thus, conceptually, 8 # We are moving wtf/ files to platform/wtf/ incrementally, thus, conceptually,
9 # the "wtf" target in wtf/BUILD.gn is being split into two, in a way that 9 # the "wtf" target in wtf/BUILD.gn is being split into two, in a way that
10 # only wtf/ can refer the contents in platform/wtf/. 10 # only wtf/ can refer the contents in platform/wtf/.
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "text/StringToNumber.cpp", 197 "text/StringToNumber.cpp",
198 "text/StringToNumber.h", 198 "text/StringToNumber.h",
199 "text/StringUTF8Adaptor.h", 199 "text/StringUTF8Adaptor.h",
200 "text/StringView.cpp", 200 "text/StringView.cpp",
201 "text/StringView.h", 201 "text/StringView.h",
202 "text/TextCodec.cpp", 202 "text/TextCodec.cpp",
203 "text/TextCodec.h", 203 "text/TextCodec.h",
204 "text/TextCodecASCIIFastPath.h", 204 "text/TextCodecASCIIFastPath.h",
205 "text/TextCodecICU.cpp", 205 "text/TextCodecICU.cpp",
206 "text/TextCodecICU.h", 206 "text/TextCodecICU.h",
207 "text/TextCodecICU.h",
208 "text/TextCodecLatin1.cpp", 207 "text/TextCodecLatin1.cpp",
209 "text/TextCodecLatin1.h", 208 "text/TextCodecLatin1.h",
210 "text/TextCodecLatin1.h",
211 "text/TextCodecReplacement.cpp", 209 "text/TextCodecReplacement.cpp",
212 "text/TextCodecReplacement.h", 210 "text/TextCodecReplacement.h",
213 "text/TextCodecUTF16.cpp", 211 "text/TextCodecUTF16.cpp",
214 "text/TextCodecUTF16.h", 212 "text/TextCodecUTF16.h",
215 "text/TextCodecUTF16.h",
216 "text/TextCodecUTF8.cpp", 213 "text/TextCodecUTF8.cpp",
217 "text/TextCodecUTF8.h", 214 "text/TextCodecUTF8.h",
218 "text/TextCodecUserDefined.cpp", 215 "text/TextCodecUserDefined.cpp",
219 "text/TextCodecUserDefined.h", 216 "text/TextCodecUserDefined.h",
220 "text/TextCodecUserDefined.h",
221 "text/TextEncoding.cpp", 217 "text/TextEncoding.cpp",
222 "text/TextEncoding.h", 218 "text/TextEncoding.h",
223 "text/TextEncoding.h",
224 "text/TextEncodingRegistry.cpp", 219 "text/TextEncodingRegistry.cpp",
225 "text/TextEncodingRegistry.h", 220 "text/TextEncodingRegistry.h",
226 "text/TextEncodingRegistry.h",
227 "text/TextPosition.cpp", 221 "text/TextPosition.cpp",
228 "text/TextPosition.h", 222 "text/TextPosition.h",
229 "text/UTF8.cpp", 223 "text/UTF8.cpp",
230 "text/UTF8.h", 224 "text/UTF8.h",
231 "text/Unicode.h", 225 "text/Unicode.h",
232 "text/WTFString.cpp", 226 "text/WTFString.cpp",
233 "text/WTFString.h", 227 "text/WTFString.h",
234 "text/icu/CollatorICU.cpp", 228 "text/icu/CollatorICU.cpp",
235 "text/icu/UnicodeIcu.h", 229 "text/icu/UnicodeIcu.h",
230 "typed_arrays/ArrayBuffer.cpp",
231 "typed_arrays/ArrayBuffer.h",
232 "typed_arrays/ArrayBufferBuilder.cpp",
233 "typed_arrays/ArrayBufferBuilder.h",
234 "typed_arrays/ArrayBufferContents.cpp",
235 "typed_arrays/ArrayBufferContents.h",
236 "typed_arrays/ArrayBufferView.cpp",
237 "typed_arrays/ArrayBufferView.h",
238 "typed_arrays/ArrayPiece.cpp",
239 "typed_arrays/ArrayPiece.h",
240 "typed_arrays/Float32Array.h",
241 "typed_arrays/Float64Array.h",
242 "typed_arrays/Int16Array.h",
243 "typed_arrays/Int32Array.h",
244 "typed_arrays/Int8Array.h",
245 "typed_arrays/IntegralTypedArrayBase.h",
246 "typed_arrays/TypedArrayBase.h",
247 "typed_arrays/Uint16Array.h",
248 "typed_arrays/Uint32Array.h",
249 "typed_arrays/Uint8Array.h",
250 "typed_arrays/Uint8ClampedArray.h",
236 ] 251 ]
237 252
238 configs += [ 253 configs += [
239 "//third_party/WebKit/Source:config", 254 "//third_party/WebKit/Source:config",
240 "//third_party/WebKit/Source:non_test_config", 255 "//third_party/WebKit/Source:non_test_config",
241 "//third_party/WebKit/Source:blink_pch", 256 "//third_party/WebKit/Source:blink_pch",
242 ] 257 ]
243 258
244 defines = [ "WTF_IMPLEMENTATION=1" ] 259 defines = [ "WTF_IMPLEMENTATION=1" ]
245 260
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 "text/AtomicStringCF.cpp", 303 "text/AtomicStringCF.cpp",
289 "text/StringImplCF.cpp", 304 "text/StringImplCF.cpp",
290 ] 305 ]
291 } 306 }
292 307
293 if (remove_webcore_debug_symbols) { 308 if (remove_webcore_debug_symbols) {
294 configs -= [ "//build/config/compiler:default_symbols" ] 309 configs -= [ "//build/config/compiler:default_symbols" ]
295 configs += [ "//build/config/compiler:no_symbols" ] 310 configs += [ "//build/config/compiler:no_symbols" ]
296 } 311 }
297 } 312 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/wtf/typed_arrays/ArrayBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698