Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2581843002: Implement merging non-composited paint property nodes in the PACompositor. (Closed)
Patch Set: none Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 "graphics/paint/GeometryMapper.cpp", 1017 "graphics/paint/GeometryMapper.cpp",
1018 "graphics/paint/GeometryMapper.h", 1018 "graphics/paint/GeometryMapper.h",
1019 "graphics/paint/PaintArtifact.cpp", 1019 "graphics/paint/PaintArtifact.cpp",
1020 "graphics/paint/PaintArtifact.h", 1020 "graphics/paint/PaintArtifact.h",
1021 "graphics/paint/PaintChunk.h", 1021 "graphics/paint/PaintChunk.h",
1022 "graphics/paint/PaintChunkProperties.h", 1022 "graphics/paint/PaintChunkProperties.h",
1023 "graphics/paint/PaintChunker.cpp", 1023 "graphics/paint/PaintChunker.cpp",
1024 "graphics/paint/PaintChunker.h", 1024 "graphics/paint/PaintChunker.h",
1025 "graphics/paint/PaintController.cpp", 1025 "graphics/paint/PaintController.cpp",
1026 "graphics/paint/PaintController.h", 1026 "graphics/paint/PaintController.h",
1027 "graphics/paint/PropertyTreeState.cpp",
1027 "graphics/paint/PropertyTreeState.h", 1028 "graphics/paint/PropertyTreeState.h",
1028 "graphics/paint/RasterInvalidationTracking.cpp", 1029 "graphics/paint/RasterInvalidationTracking.cpp",
1029 "graphics/paint/RasterInvalidationTracking.h", 1030 "graphics/paint/RasterInvalidationTracking.h",
1030 "graphics/paint/ScopedPaintChunkProperties.h", 1031 "graphics/paint/ScopedPaintChunkProperties.h",
1031 "graphics/paint/ScrollDisplayItem.cpp", 1032 "graphics/paint/ScrollDisplayItem.cpp",
1032 "graphics/paint/ScrollDisplayItem.h", 1033 "graphics/paint/ScrollDisplayItem.h",
1033 "graphics/paint/ScrollPaintPropertyNode.cpp", 1034 "graphics/paint/ScrollPaintPropertyNode.cpp",
1034 "graphics/paint/ScrollPaintPropertyNode.h", 1035 "graphics/paint/ScrollPaintPropertyNode.h",
1035 "graphics/paint/SkPictureBuilder.cpp", 1036 "graphics/paint/SkPictureBuilder.cpp",
1036 "graphics/paint/SkPictureBuilder.h", 1037 "graphics/paint/SkPictureBuilder.h",
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
1740 "graphics/gpu/DrawingBufferTest.cpp", 1741 "graphics/gpu/DrawingBufferTest.cpp",
1741 "graphics/gpu/SharedGpuContextTest.cpp", 1742 "graphics/gpu/SharedGpuContextTest.cpp",
1742 "graphics/gpu/WebGLImageConversionTest.cpp", 1743 "graphics/gpu/WebGLImageConversionTest.cpp",
1743 "graphics/paint/DisplayItemClientTest.cpp", 1744 "graphics/paint/DisplayItemClientTest.cpp",
1744 "graphics/paint/DisplayItemListTest.cpp", 1745 "graphics/paint/DisplayItemListTest.cpp",
1745 "graphics/paint/DisplayItemTest.cpp", 1746 "graphics/paint/DisplayItemTest.cpp",
1746 "graphics/paint/GeometryMapperTest.cpp", 1747 "graphics/paint/GeometryMapperTest.cpp",
1747 "graphics/paint/PaintChunkTest.cpp", 1748 "graphics/paint/PaintChunkTest.cpp",
1748 "graphics/paint/PaintChunkerTest.cpp", 1749 "graphics/paint/PaintChunkerTest.cpp",
1749 "graphics/paint/PaintControllerTest.cpp", 1750 "graphics/paint/PaintControllerTest.cpp",
1751 "graphics/paint/PropertyTreeStateTest.cpp",
1750 "image-decoders/FastSharedBufferReaderTest.cpp", 1752 "image-decoders/FastSharedBufferReaderTest.cpp",
1751 "image-decoders/ImageDecoderTest.cpp", 1753 "image-decoders/ImageDecoderTest.cpp",
1752 "image-decoders/ImageDecoderTestHelpers.cpp", 1754 "image-decoders/ImageDecoderTestHelpers.cpp",
1753 "image-decoders/ImageDecoderTestHelpers.h", 1755 "image-decoders/ImageDecoderTestHelpers.h",
1754 "image-decoders/bmp/BMPImageDecoderTest.cpp", 1756 "image-decoders/bmp/BMPImageDecoderTest.cpp",
1755 "image-decoders/gif/GIFImageDecoderTest.cpp", 1757 "image-decoders/gif/GIFImageDecoderTest.cpp",
1756 "image-decoders/ico/ICOImageDecoderTest.cpp", 1758 "image-decoders/ico/ICOImageDecoderTest.cpp",
1757 "image-decoders/jpeg/JPEGImageDecoderTest.cpp", 1759 "image-decoders/jpeg/JPEGImageDecoderTest.cpp",
1758 "image-decoders/png/PNGImageDecoderTest.cpp", 1760 "image-decoders/png/PNGImageDecoderTest.cpp",
1759 "image-decoders/webp/WEBPImageDecoderTest.cpp", 1761 "image-decoders/webp/WEBPImageDecoderTest.cpp",
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 "//third_party/WebKit/Source:config", 2077 "//third_party/WebKit/Source:config",
2076 "//third_party/WebKit/Source:inside_blink", 2078 "//third_party/WebKit/Source:inside_blink",
2077 ] 2079 ]
2078 2080
2079 deps = [ 2081 deps = [
2080 ":test_support", 2082 ":test_support",
2081 "//testing/gmock", 2083 "//testing/gmock",
2082 "//testing/gtest", 2084 "//testing/gtest",
2083 ] 2085 ]
2084 } 2086 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698