| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |