| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| (...skipping 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1433 "text/TextRun.cpp", | 1433 "text/TextRun.cpp", |
| 1434 "text/TextRun.h", | 1434 "text/TextRun.h", |
| 1435 "text/TextRunIterator.h", | 1435 "text/TextRunIterator.h", |
| 1436 "text/TextStream.cpp", | 1436 "text/TextStream.cpp", |
| 1437 "text/TextStream.h", | 1437 "text/TextStream.h", |
| 1438 "text/UnicodeBidi.h", | 1438 "text/UnicodeBidi.h", |
| 1439 "text/UnicodeRange.cpp", | 1439 "text/UnicodeRange.cpp", |
| 1440 "text/UnicodeRange.h", | 1440 "text/UnicodeRange.h", |
| 1441 "text/UnicodeUtilities.cpp", | 1441 "text/UnicodeUtilities.cpp", |
| 1442 "text/UnicodeUtilities.h", | 1442 "text/UnicodeUtilities.h", |
| 1443 "text/WebEntities.cpp", |
| 1444 "text/WebEntities.h", |
| 1443 "text/WritingMode.h", | 1445 "text/WritingMode.h", |
| 1444 "text/linux/HyphenationLinux.cpp", | 1446 "text/linux/HyphenationLinux.cpp", |
| 1445 "text/mac/HyphenationMac.cpp", | 1447 "text/mac/HyphenationMac.cpp", |
| 1446 "text/win/HyphenationWin.cpp", | 1448 "text/win/HyphenationWin.cpp", |
| 1447 "threading/BackgroundTaskRunner.cpp", | 1449 "threading/BackgroundTaskRunner.cpp", |
| 1448 "threading/BackgroundTaskRunner.h", | 1450 "threading/BackgroundTaskRunner.h", |
| 1449 "transforms/AffineTransform.cpp", | 1451 "transforms/AffineTransform.cpp", |
| 1450 "transforms/AffineTransform.h", | 1452 "transforms/AffineTransform.h", |
| 1451 "transforms/IdentityTransformOperation.h", | 1453 "transforms/IdentityTransformOperation.h", |
| 1452 "transforms/InterpolatedTransformOperation.cpp", | 1454 "transforms/InterpolatedTransformOperation.cpp", |
| (...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2225 "//third_party/WebKit/Source:config", | 2227 "//third_party/WebKit/Source:config", |
| 2226 "//third_party/WebKit/Source:inside_blink", | 2228 "//third_party/WebKit/Source:inside_blink", |
| 2227 ] | 2229 ] |
| 2228 | 2230 |
| 2229 deps = [ | 2231 deps = [ |
| 2230 ":test_support", | 2232 ":test_support", |
| 2231 "//testing/gmock", | 2233 "//testing/gmock", |
| 2232 "//testing/gtest", | 2234 "//testing/gtest", |
| 2233 ] | 2235 ] |
| 2234 } | 2236 } |
| OLD | NEW |