| 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 973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 "graphics/paint/PaintChunker.cpp", | 984 "graphics/paint/PaintChunker.cpp", |
| 985 "graphics/paint/PaintChunker.h", | 985 "graphics/paint/PaintChunker.h", |
| 986 "graphics/paint/PaintController.cpp", | 986 "graphics/paint/PaintController.cpp", |
| 987 "graphics/paint/PaintController.h", | 987 "graphics/paint/PaintController.h", |
| 988 "graphics/paint/PaintFlags.h", | 988 "graphics/paint/PaintFlags.h", |
| 989 "graphics/paint/PaintRecord.h", | 989 "graphics/paint/PaintRecord.h", |
| 990 "graphics/paint/PaintRecordBuilder.cpp", | 990 "graphics/paint/PaintRecordBuilder.cpp", |
| 991 "graphics/paint/PaintRecordBuilder.h", | 991 "graphics/paint/PaintRecordBuilder.h", |
| 992 "graphics/paint/PaintRecorder.h", | 992 "graphics/paint/PaintRecorder.h", |
| 993 "graphics/paint/PaintShader.h", | 993 "graphics/paint/PaintShader.h", |
| 994 "graphics/paint/PaintSurface.h", | |
| 995 "graphics/paint/PropertyTreeState.cpp", | 994 "graphics/paint/PropertyTreeState.cpp", |
| 996 "graphics/paint/PropertyTreeState.h", | 995 "graphics/paint/PropertyTreeState.h", |
| 997 "graphics/paint/RasterInvalidationTracking.cpp", | 996 "graphics/paint/RasterInvalidationTracking.cpp", |
| 998 "graphics/paint/RasterInvalidationTracking.h", | 997 "graphics/paint/RasterInvalidationTracking.h", |
| 999 "graphics/paint/ScopedPaintChunkProperties.h", | 998 "graphics/paint/ScopedPaintChunkProperties.h", |
| 1000 "graphics/paint/ScrollDisplayItem.cpp", | 999 "graphics/paint/ScrollDisplayItem.cpp", |
| 1001 "graphics/paint/ScrollDisplayItem.h", | 1000 "graphics/paint/ScrollDisplayItem.h", |
| 1002 "graphics/paint/ScrollPaintPropertyNode.cpp", | 1001 "graphics/paint/ScrollPaintPropertyNode.cpp", |
| 1003 "graphics/paint/ScrollPaintPropertyNode.h", | 1002 "graphics/paint/ScrollPaintPropertyNode.h", |
| 1004 "graphics/paint/SubsequenceDisplayItem.h", | 1003 "graphics/paint/SubsequenceDisplayItem.h", |
| (...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2087 "//third_party/WebKit/Source:config", | 2086 "//third_party/WebKit/Source:config", |
| 2088 "//third_party/WebKit/Source:inside_blink", | 2087 "//third_party/WebKit/Source:inside_blink", |
| 2089 ] | 2088 ] |
| 2090 | 2089 |
| 2091 deps = [ | 2090 deps = [ |
| 2092 ":test_support", | 2091 ":test_support", |
| 2093 "//testing/gmock", | 2092 "//testing/gmock", |
| 2094 "//testing/gtest", | 2093 "//testing/gtest", |
| 2095 ] | 2094 ] |
| 2096 } | 2095 } |
| OLD | NEW |