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

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

Issue 2315853002: Massively simplify WTF's StringConcatenate (Closed)
Patch Set: missing inlines. Created 4 years, 3 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
OLDNEW
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 assert(!is_ios) 5 assert(!is_ios)
6 6
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 9
10 visibility = [ 10 visibility = [
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 "text/StringBuilder.cpp", 188 "text/StringBuilder.cpp",
189 "text/StringBuilder.h", 189 "text/StringBuilder.h",
190 "text/StringConcatenate.cpp", 190 "text/StringConcatenate.cpp",
191 "text/StringConcatenate.h", 191 "text/StringConcatenate.h",
192 "text/StringHash.h", 192 "text/StringHash.h",
193 "text/StringImpl.cpp", 193 "text/StringImpl.cpp",
194 "text/StringImpl.h", 194 "text/StringImpl.h",
195 "text/StringImplCF.cpp", 195 "text/StringImplCF.cpp",
196 "text/StringImplMac.mm", 196 "text/StringImplMac.mm",
197 "text/StringMac.mm", 197 "text/StringMac.mm",
198 "text/StringOperators.h",
199 "text/StringStatics.cpp", 198 "text/StringStatics.cpp",
200 "text/StringToNumber.cpp", 199 "text/StringToNumber.cpp",
201 "text/StringToNumber.h", 200 "text/StringToNumber.h",
202 "text/StringUTF8Adaptor.h", 201 "text/StringUTF8Adaptor.h",
203 "text/StringView.cpp", 202 "text/StringView.cpp",
204 "text/StringView.h", 203 "text/StringView.h",
205 "text/TextCodec.cpp", 204 "text/TextCodec.cpp",
206 "text/TextCodec.h", 205 "text/TextCodec.h",
207 "text/TextCodecASCIIFastPath.h", 206 "text/TextCodecASCIIFastPath.h",
208 "text/TextCodecICU.cpp", 207 "text/TextCodecICU.cpp",
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 "TypeTraitsTest.cpp", 326 "TypeTraitsTest.cpp",
328 "VectorTest.cpp", 327 "VectorTest.cpp",
329 "allocator/PartitionAllocTest.cpp", 328 "allocator/PartitionAllocTest.cpp",
330 "dtoa_test.cpp", 329 "dtoa_test.cpp",
331 "testing/RunAllTests.cpp", 330 "testing/RunAllTests.cpp",
332 "text/AtomicStringTest.cpp", 331 "text/AtomicStringTest.cpp",
333 "text/CStringTest.cpp", 332 "text/CStringTest.cpp",
334 "text/IntegerToStringConversionTest.cpp", 333 "text/IntegerToStringConversionTest.cpp",
335 "text/StringBufferTest.cpp", 334 "text/StringBufferTest.cpp",
336 "text/StringBuilderTest.cpp", 335 "text/StringBuilderTest.cpp",
336 "text/StringConcatenateTest.cpp",
337 "text/StringImplTest.cpp", 337 "text/StringImplTest.cpp",
338 "text/StringOperatorsTest.cpp",
339 "text/StringViewTest.cpp", 338 "text/StringViewTest.cpp",
340 "text/TextCodecReplacementTest.cpp", 339 "text/TextCodecReplacementTest.cpp",
341 "text/TextCodecTest.cpp", 340 "text/TextCodecTest.cpp",
342 "text/TextCodecUTF8Test.cpp", 341 "text/TextCodecUTF8Test.cpp",
343 "text/WTFStringTest.cpp", 342 "text/WTFStringTest.cpp",
344 "typed_arrays/ArrayBufferBuilderTest.cpp", 343 "typed_arrays/ArrayBufferBuilderTest.cpp",
345 ] 344 ]
346 345
347 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 346 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
348 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 347 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
349 348
350 if (is_win) { 349 if (is_win) {
351 cflags = [ "/wd4068" ] # Unknown pragma. 350 cflags = [ "/wd4068" ] # Unknown pragma.
352 } 351 }
353 352
354 configs += [ "//third_party/WebKit/Source:config" ] 353 configs += [ "//third_party/WebKit/Source:config" ]
355 354
356 deps = [ 355 deps = [
357 ":wtf", 356 ":wtf",
358 "//base", 357 "//base",
359 "//base/test:test_support", 358 "//base/test:test_support",
360 "//testing/gmock", 359 "//testing/gmock",
361 "//testing/gtest", 360 "//testing/gtest",
362 ] 361 ]
363 } 362 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698