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

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

Issue 2464373006: Fix vector resize logic when encoding non-BMP chars to x-user-defined (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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/TextCodecLatin1Test.cpp",
340 "text/TextCodecReplacementTest.cpp", 340 "text/TextCodecReplacementTest.cpp",
341 "text/TextCodecTest.cpp", 341 "text/TextCodecTest.cpp",
342 "text/TextCodecUTF8Test.cpp", 342 "text/TextCodecUTF8Test.cpp",
343 "text/TextCodecUserDefinedTest.cpp",
343 "text/WTFStringTest.cpp", 344 "text/WTFStringTest.cpp",
344 "typed_arrays/ArrayBufferBuilderTest.cpp", 345 "typed_arrays/ArrayBufferBuilderTest.cpp",
345 ] 346 ]
346 347
347 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 348 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
348 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 349 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
349 350
350 if (is_win) { 351 if (is_win) {
351 cflags = [ "/wd4068" ] # Unknown pragma. 352 cflags = [ "/wd4068" ] # Unknown pragma.
352 } 353 }
353 354
354 configs += [ "//third_party/WebKit/Source:config" ] 355 configs += [ "//third_party/WebKit/Source:config" ]
355 356
356 deps = [ 357 deps = [
357 ":wtf", 358 ":wtf",
358 "//base", 359 "//base",
359 "//base/test:test_support", 360 "//base/test:test_support",
360 "//testing/gmock", 361 "//testing/gmock",
361 "//testing/gtest", 362 "//testing/gtest",
362 ] 363 ]
363 } 364 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698