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

Unified Diff: cc/paint/BUILD.gn

Issue 2748263002: Move cc::DisplayItemList and related classes into cc/paint/ (Closed)
Patch Set: none Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: cc/paint/BUILD.gn
diff --git a/cc/paint/BUILD.gn b/cc/paint/BUILD.gn
index 7e72126aaf20366db9550bd4393d1f8c7b1abfa4..531f90a01e7d6a65e89418d6126583be5e90205d 100644
--- a/cc/paint/BUILD.gn
+++ b/cc/paint/BUILD.gn
@@ -7,6 +7,32 @@ import("//cc/cc.gni")
cc_component("paint") {
output_name = "cc_paint"
sources = [
+ "clip_display_item.cc",
+ "clip_display_item.h",
+ "clip_path_display_item.cc",
+ "clip_path_display_item.h",
+ "compositing_display_item.cc",
+ "compositing_display_item.h",
+ "discardable_image_map.cc",
+ "discardable_image_map.h",
+ "display_item.h",
+ "display_item_list.cc",
+ "display_item_list.h",
+ "draw_image.cc",
+ "draw_image.h",
+ "drawing_display_item.cc",
+ "drawing_display_item.h",
+ "filter_display_item.cc",
+ "filter_display_item.h",
+ "filter_operation.cc",
+ "filter_operation.h",
+ "filter_operations.cc",
+ "filter_operations.h",
+ "float_clip_display_item.cc",
+ "float_clip_display_item.h",
+ "image_id.h",
+ "largest_display_item.cc",
+ "largest_display_item.h",
"paint_canvas.cc",
"paint_canvas.h",
"paint_export.h",
@@ -17,8 +43,12 @@ cc_component("paint") {
"paint_shader.h",
"paint_surface.cc",
"paint_surface.h",
+ "render_surface_filters.cc",
+ "render_surface_filters.h",
"skia_paint_canvas.cc",
"skia_paint_canvas.h",
+ "transform_display_item.cc",
+ "transform_display_item.h",
]
defines = [ "CC_PAINT_IMPLEMENTATION=1" ]
@@ -27,7 +57,13 @@ cc_component("paint") {
# included in Blink. This component should never publicly include
# anything that Blink core wouldn't include (e.g. base).
public_deps = [
+ "//cc/base",
+ "//cc/debug",
"//skia",
+ "//ui/gfx:color_space",
+ "//ui/gfx:geometry_skia",
+ "//ui/gfx/animation",
+ "//ui/gfx/geometry",
]
deps = [

Powered by Google App Engine
This is Rietveld 408576698