| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 "text/StringUTF8Adaptor.h", | 203 "text/StringUTF8Adaptor.h", |
| 204 "text/StringView.cpp", | 204 "text/StringView.cpp", |
| 205 "text/StringView.h", | 205 "text/StringView.h", |
| 206 "text/TextCodec.cpp", | 206 "text/TextCodec.cpp", |
| 207 "text/TextCodec.h", | 207 "text/TextCodec.h", |
| 208 "text/TextCodecASCIIFastPath.h", | 208 "text/TextCodecASCIIFastPath.h", |
| 209 "text/TextCodecICU.cpp", | 209 "text/TextCodecICU.cpp", |
| 210 "text/TextCodecLatin1.cpp", | 210 "text/TextCodecLatin1.cpp", |
| 211 "text/TextCodecReplacement.cpp", | 211 "text/TextCodecReplacement.cpp", |
| 212 "text/TextCodecReplacement.h", | 212 "text/TextCodecReplacement.h", |
| 213 "text/TextCodecUTF16.cpp", | |
| 214 "text/TextCodecUTF8.cpp", | 213 "text/TextCodecUTF8.cpp", |
| 215 "text/TextCodecUTF8.h", | 214 "text/TextCodecUTF8.h", |
| 216 "text/TextCodecUserDefined.cpp", | 215 "text/TextCodecUserDefined.cpp", |
| 217 "text/TextEncoding.cpp", | 216 "text/TextEncoding.cpp", |
| 218 "text/TextEncodingRegistry.cpp", | 217 "text/TextEncodingRegistry.cpp", |
| 219 "text/TextPosition.cpp", | 218 "text/TextPosition.cpp", |
| 220 "text/TextPosition.h", | 219 "text/TextPosition.h", |
| 221 "text/UTF8.cpp", | 220 "text/UTF8.cpp", |
| 222 "text/UTF8.h", | 221 "text/UTF8.h", |
| 223 "text/Unicode.h", | 222 "text/Unicode.h", |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 configs += [ "//third_party/WebKit/Source:config" ] | 355 configs += [ "//third_party/WebKit/Source:config" ] |
| 357 | 356 |
| 358 deps = [ | 357 deps = [ |
| 359 ":wtf", | 358 ":wtf", |
| 360 "//base", | 359 "//base", |
| 361 "//base/test:test_support", | 360 "//base/test:test_support", |
| 362 "//testing/gmock", | 361 "//testing/gmock", |
| 363 "//testing/gtest", | 362 "//testing/gtest", |
| 364 ] | 363 ] |
| 365 } | 364 } |
| OLD | NEW |