| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |