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

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

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: Clean up comments, fix mac build 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1428 include_dirs = [ 1434 include_dirs = [
1429 #"$angle_path/include", 1435 #"$angle_path/include",
1430 "$root_gen_dir/blink", 1436 "$root_gen_dir/blink",
1431 ] 1437 ]
1432 1438
1433 public_deps = [ 1439 public_deps = [
1434 ":make_platform_generated", 1440 ":make_platform_generated",
1435 "//base", 1441 "//base",
1436 "//cc", 1442 "//cc",
1437 "//cc/animation", 1443 "//cc/animation",
1444 "//cc/paint",
danakj 2017/01/20 23:34:14 why public deps?
enne (OOO) 2017/01/24 01:51:28 Because it includes files from cc/paint? So if you
1438 "//gpu/command_buffer/client:client", 1445 "//gpu/command_buffer/client:client",
1439 "//gpu/command_buffer/client:gles2_c_lib", 1446 "//gpu/command_buffer/client:gles2_c_lib",
1440 "//gpu/command_buffer/client:gles2_interface", 1447 "//gpu/command_buffer/client:gles2_interface",
1441 "//gpu/command_buffer/common:common", 1448 "//gpu/command_buffer/common:common",
1442 "//media", 1449 "//media",
1443 "//net", 1450 "//net",
1444 "//services/service_manager/public/interfaces:interfaces_blink", 1451 "//services/service_manager/public/interfaces:interfaces_blink",
1445 "//skia", 1452 "//skia",
1446 "//third_party:jpeg", 1453 "//third_party:jpeg",
1447 "//third_party/WebKit/Source/wtf", 1454 "//third_party/WebKit/Source/wtf",
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
2090 "//third_party/WebKit/Source:config", 2097 "//third_party/WebKit/Source:config",
2091 "//third_party/WebKit/Source:inside_blink", 2098 "//third_party/WebKit/Source:inside_blink",
2092 ] 2099 ]
2093 2100
2094 deps = [ 2101 deps = [
2095 ":test_support", 2102 ":test_support",
2096 "//testing/gmock", 2103 "//testing/gmock",
2097 "//testing/gtest", 2104 "//testing/gtest",
2098 ] 2105 ]
2099 } 2106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698