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

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

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: Re-add ios changes 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 993 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 "graphics/paint/FilterDisplayItem.cpp", 1004 "graphics/paint/FilterDisplayItem.cpp",
1005 "graphics/paint/FilterDisplayItem.h", 1005 "graphics/paint/FilterDisplayItem.h",
1006 "graphics/paint/FloatClipDisplayItem.cpp", 1006 "graphics/paint/FloatClipDisplayItem.cpp",
1007 "graphics/paint/FloatClipDisplayItem.h", 1007 "graphics/paint/FloatClipDisplayItem.h",
1008 "graphics/paint/ForeignLayerDisplayItem.cpp", 1008 "graphics/paint/ForeignLayerDisplayItem.cpp",
1009 "graphics/paint/ForeignLayerDisplayItem.h", 1009 "graphics/paint/ForeignLayerDisplayItem.h",
1010 "graphics/paint/GeometryMapper.cpp", 1010 "graphics/paint/GeometryMapper.cpp",
1011 "graphics/paint/GeometryMapper.h", 1011 "graphics/paint/GeometryMapper.h",
1012 "graphics/paint/PaintArtifact.cpp", 1012 "graphics/paint/PaintArtifact.cpp",
1013 "graphics/paint/PaintArtifact.h", 1013 "graphics/paint/PaintArtifact.h",
1014 "graphics/paint/PaintCanvas.h",
1014 "graphics/paint/PaintChunk.h", 1015 "graphics/paint/PaintChunk.h",
1015 "graphics/paint/PaintChunkProperties.h", 1016 "graphics/paint/PaintChunkProperties.h",
1016 "graphics/paint/PaintChunker.cpp", 1017 "graphics/paint/PaintChunker.cpp",
1017 "graphics/paint/PaintChunker.h", 1018 "graphics/paint/PaintChunker.h",
1018 "graphics/paint/PaintController.cpp", 1019 "graphics/paint/PaintController.cpp",
1019 "graphics/paint/PaintController.h", 1020 "graphics/paint/PaintController.h",
1021 "graphics/paint/PaintFlags.h",
1022 "graphics/paint/PaintRecord.h",
1023 "graphics/paint/PaintRecorder.h",
1024 "graphics/paint/PaintShader.h",
1025 "graphics/paint/PaintSurface.h",
1020 "graphics/paint/PropertyTreeState.cpp", 1026 "graphics/paint/PropertyTreeState.cpp",
1021 "graphics/paint/PropertyTreeState.h", 1027 "graphics/paint/PropertyTreeState.h",
1022 "graphics/paint/RasterInvalidationTracking.cpp", 1028 "graphics/paint/RasterInvalidationTracking.cpp",
1023 "graphics/paint/RasterInvalidationTracking.h", 1029 "graphics/paint/RasterInvalidationTracking.h",
1024 "graphics/paint/ScopedPaintChunkProperties.h", 1030 "graphics/paint/ScopedPaintChunkProperties.h",
1025 "graphics/paint/ScrollDisplayItem.cpp", 1031 "graphics/paint/ScrollDisplayItem.cpp",
1026 "graphics/paint/ScrollDisplayItem.h", 1032 "graphics/paint/ScrollDisplayItem.h",
1027 "graphics/paint/ScrollPaintPropertyNode.cpp", 1033 "graphics/paint/ScrollPaintPropertyNode.cpp",
1028 "graphics/paint/ScrollPaintPropertyNode.h", 1034 "graphics/paint/ScrollPaintPropertyNode.h",
1029 "graphics/paint/SkPictureBuilder.cpp", 1035 "graphics/paint/SkPictureBuilder.cpp",
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 include_dirs = [ 1435 include_dirs = [
1430 #"$angle_path/include", 1436 #"$angle_path/include",
1431 "$root_gen_dir/blink", 1437 "$root_gen_dir/blink",
1432 ] 1438 ]
1433 1439
1434 public_deps = [ 1440 public_deps = [
1435 ":make_platform_generated", 1441 ":make_platform_generated",
1436 "//base", 1442 "//base",
1437 "//cc", 1443 "//cc",
1438 "//cc/animation", 1444 "//cc/animation",
1445 "//cc/paint",
1439 "//gpu/command_buffer/client:client", 1446 "//gpu/command_buffer/client:client",
1440 "//gpu/command_buffer/client:gles2_c_lib", 1447 "//gpu/command_buffer/client:gles2_c_lib",
1441 "//gpu/command_buffer/client:gles2_interface", 1448 "//gpu/command_buffer/client:gles2_interface",
1442 "//gpu/command_buffer/common:common", 1449 "//gpu/command_buffer/common:common",
1443 "//media", 1450 "//media",
1444 "//net", 1451 "//net",
1445 "//services/service_manager/public/interfaces:interfaces_blink", 1452 "//services/service_manager/public/interfaces:interfaces_blink",
1446 "//skia", 1453 "//skia",
1447 "//third_party:jpeg", 1454 "//third_party:jpeg",
1448 "//third_party/WebKit/Source/wtf", 1455 "//third_party/WebKit/Source/wtf",
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
2110 "//third_party/WebKit/Source:config", 2117 "//third_party/WebKit/Source:config",
2111 "//third_party/WebKit/Source:inside_blink", 2118 "//third_party/WebKit/Source:inside_blink",
2112 ] 2119 ]
2113 2120
2114 deps = [ 2121 deps = [
2115 ":test_support", 2122 ":test_support",
2116 "//testing/gmock", 2123 "//testing/gmock",
2117 "//testing/gtest", 2124 "//testing/gtest",
2118 ] 2125 ]
2119 } 2126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698