| 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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 "fonts/ScriptRunIterator.cpp", | 601 "fonts/ScriptRunIterator.cpp", |
| 602 "fonts/ScriptRunIterator.h", | 602 "fonts/ScriptRunIterator.h", |
| 603 "fonts/SegmentedFontData.cpp", | 603 "fonts/SegmentedFontData.cpp", |
| 604 "fonts/SegmentedFontData.h", | 604 "fonts/SegmentedFontData.h", |
| 605 "fonts/SimpleFontData.cpp", | 605 "fonts/SimpleFontData.cpp", |
| 606 "fonts/SimpleFontData.h", | 606 "fonts/SimpleFontData.h", |
| 607 "fonts/SmallCapsIterator.cpp", | 607 "fonts/SmallCapsIterator.cpp", |
| 608 "fonts/SmallCapsIterator.h", | 608 "fonts/SmallCapsIterator.h", |
| 609 "fonts/SymbolsIterator.cpp", | 609 "fonts/SymbolsIterator.cpp", |
| 610 "fonts/SymbolsIterator.h", | 610 "fonts/SymbolsIterator.h", |
| 611 "fonts/TextBlob.h", | |
| 612 "fonts/UTF16TextIterator.cpp", | 611 "fonts/UTF16TextIterator.cpp", |
| 613 "fonts/UTF16TextIterator.h", | 612 "fonts/UTF16TextIterator.h", |
| 614 "fonts/UnicodeRangeSet.cpp", | 613 "fonts/UnicodeRangeSet.cpp", |
| 615 "fonts/UnicodeRangeSet.h", | 614 "fonts/UnicodeRangeSet.h", |
| 616 "fonts/VDMXParser.cpp", | 615 "fonts/VDMXParser.cpp", |
| 617 "fonts/VDMXParser.h", | 616 "fonts/VDMXParser.h", |
| 618 "fonts/WebFontDecoder.cpp", | 617 "fonts/WebFontDecoder.cpp", |
| 619 "fonts/WebFontDecoder.h", | 618 "fonts/WebFontDecoder.h", |
| 620 "fonts/android/FontCacheAndroid.cpp", | 619 "fonts/android/FontCacheAndroid.cpp", |
| 621 "fonts/linux/FontCacheLinux.cpp", | 620 "fonts/linux/FontCacheLinux.cpp", |
| (...skipping 1450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2072 "//third_party/WebKit/Source:config", | 2071 "//third_party/WebKit/Source:config", |
| 2073 "//third_party/WebKit/Source:inside_blink", | 2072 "//third_party/WebKit/Source:inside_blink", |
| 2074 ] | 2073 ] |
| 2075 | 2074 |
| 2076 deps = [ | 2075 deps = [ |
| 2077 ":test_support", | 2076 ":test_support", |
| 2078 "//testing/gmock", | 2077 "//testing/gmock", |
| 2079 "//testing/gtest", | 2078 "//testing/gtest", |
| 2080 ] | 2079 ] |
| 2081 } | 2080 } |
| OLD | NEW |