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

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

Issue 2470043004: Fix vector resize logic when encoding non-BMP chars to latin1 as ?s (Closed)
Patch Set: rebased Created 4 years, 1 month 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 "testing/RunAllTests.cpp", 329 "testing/RunAllTests.cpp",
330 "text/AtomicStringTest.cpp", 330 "text/AtomicStringTest.cpp",
331 "text/CStringTest.cpp", 331 "text/CStringTest.cpp",
332 "text/IntegerToStringConversionTest.cpp", 332 "text/IntegerToStringConversionTest.cpp",
333 "text/StringBufferTest.cpp", 333 "text/StringBufferTest.cpp",
334 "text/StringBuilderTest.cpp", 334 "text/StringBuilderTest.cpp",
335 "text/StringImplTest.cpp", 335 "text/StringImplTest.cpp",
336 "text/StringOperatorsTest.cpp", 336 "text/StringOperatorsTest.cpp",
337 "text/StringViewTest.cpp", 337 "text/StringViewTest.cpp",
338 "text/TextCodecICUTest.cpp", 338 "text/TextCodecICUTest.cpp",
339 "text/TextCodecLatin1Test.cpp",
339 "text/TextCodecReplacementTest.cpp", 340 "text/TextCodecReplacementTest.cpp",
340 "text/TextCodecTest.cpp", 341 "text/TextCodecTest.cpp",
341 "text/TextCodecUTF8Test.cpp", 342 "text/TextCodecUTF8Test.cpp",
342 "text/WTFStringTest.cpp", 343 "text/WTFStringTest.cpp",
343 "typed_arrays/ArrayBufferBuilderTest.cpp", 344 "typed_arrays/ArrayBufferBuilderTest.cpp",
344 ] 345 ]
345 346
346 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 347 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
347 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 348 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
348 349
349 if (is_win) { 350 if (is_win) {
350 cflags = [ "/wd4068" ] # Unknown pragma. 351 cflags = [ "/wd4068" ] # Unknown pragma.
351 } 352 }
352 353
353 configs += [ "//third_party/WebKit/Source:config" ] 354 configs += [ "//third_party/WebKit/Source:config" ]
354 355
355 deps = [ 356 deps = [
356 ":wtf", 357 ":wtf",
357 "//base", 358 "//base",
358 "//base/test:test_support", 359 "//base/test:test_support",
359 "//testing/gmock", 360 "//testing/gmock",
360 "//testing/gtest", 361 "//testing/gtest",
361 ] 362 ]
362 } 363 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698