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

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 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
1748 "graphics/gpu/DrawingBufferTest.cpp", 1749 "graphics/gpu/DrawingBufferTest.cpp",
1749 "graphics/gpu/SharedGpuContextTest.cpp", 1750 "graphics/gpu/SharedGpuContextTest.cpp",
1750 "graphics/gpu/WebGLImageConversionTest.cpp", 1751 "graphics/gpu/WebGLImageConversionTest.cpp",
1751 "graphics/paint/DisplayItemClientTest.cpp", 1752 "graphics/paint/DisplayItemClientTest.cpp",
1752 "graphics/paint/DisplayItemListTest.cpp", 1753 "graphics/paint/DisplayItemListTest.cpp",
1753 "graphics/paint/DisplayItemTest.cpp", 1754 "graphics/paint/DisplayItemTest.cpp",
1754 "graphics/paint/GeometryMapperTest.cpp", 1755 "graphics/paint/GeometryMapperTest.cpp",
1755 "graphics/paint/PaintChunkTest.cpp", 1756 "graphics/paint/PaintChunkTest.cpp",
1756 "graphics/paint/PaintChunkerTest.cpp", 1757 "graphics/paint/PaintChunkerTest.cpp",
1757 "graphics/paint/PaintControllerTest.cpp", 1758 "graphics/paint/PaintControllerTest.cpp",
1759 "graphics/paint/PropertyTreeStateTest.cpp",
1758 "image-decoders/FastSharedBufferReaderTest.cpp", 1760 "image-decoders/FastSharedBufferReaderTest.cpp",
1759 "image-decoders/ImageDecoderTest.cpp", 1761 "image-decoders/ImageDecoderTest.cpp",
1760 "image-decoders/ImageDecoderTestHelpers.cpp", 1762 "image-decoders/ImageDecoderTestHelpers.cpp",
1761 "image-decoders/ImageDecoderTestHelpers.h", 1763 "image-decoders/ImageDecoderTestHelpers.h",
1762 "image-decoders/bmp/BMPImageDecoderTest.cpp", 1764 "image-decoders/bmp/BMPImageDecoderTest.cpp",
1763 "image-decoders/gif/GIFImageDecoderTest.cpp", 1765 "image-decoders/gif/GIFImageDecoderTest.cpp",
1764 "image-decoders/ico/ICOImageDecoderTest.cpp", 1766 "image-decoders/ico/ICOImageDecoderTest.cpp",
1765 "image-decoders/jpeg/JPEGImageDecoderTest.cpp", 1767 "image-decoders/jpeg/JPEGImageDecoderTest.cpp",
1766 "image-decoders/png/PNGImageDecoderTest.cpp", 1768 "image-decoders/png/PNGImageDecoderTest.cpp",
1767 "image-decoders/webp/WEBPImageDecoderTest.cpp", 1769 "image-decoders/webp/WEBPImageDecoderTest.cpp",
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
2083 "//third_party/WebKit/Source:config", 2085 "//third_party/WebKit/Source:config",
2084 "//third_party/WebKit/Source:inside_blink", 2086 "//third_party/WebKit/Source:inside_blink",
2085 ] 2087 ]
2086 2088
2087 deps = [ 2089 deps = [
2088 ":test_support", 2090 ":test_support",
2089 "//testing/gmock", 2091 "//testing/gmock",
2090 "//testing/gtest", 2092 "//testing/gtest",
2091 ] 2093 ]
2092 } 2094 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698