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

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

Issue 2478653002: Don't initialize ICU replacement character for UTF-32 encodings (Closed)
Patch Set: Add tests for TextEncoding methods 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/TextCodecUserDefinedTest.cpp",
344 "text/TextEncodingTest.cpp",
344 "text/WTFStringTest.cpp", 345 "text/WTFStringTest.cpp",
345 "typed_arrays/ArrayBufferBuilderTest.cpp", 346 "typed_arrays/ArrayBufferBuilderTest.cpp",
346 ] 347 ]
347 348
348 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 349 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
349 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 350 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
350 351
351 if (is_win) { 352 if (is_win) {
352 cflags = [ "/wd4068" ] # Unknown pragma. 353 cflags = [ "/wd4068" ] # Unknown pragma.
353 } 354 }
354 355
355 configs += [ "//third_party/WebKit/Source:config" ] 356 configs += [ "//third_party/WebKit/Source:config" ]
356 357
357 deps = [ 358 deps = [
358 ":wtf", 359 ":wtf",
359 "//base", 360 "//base",
360 "//base/test:test_support", 361 "//base/test:test_support",
361 "//testing/gmock", 362 "//testing/gmock",
362 "//testing/gtest", 363 "//testing/gtest",
363 ] 364 ]
364 } 365 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/text/TextCodecICU.h » ('j') | third_party/WebKit/Source/wtf/text/TextCodecICU.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698