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

Unified Diff: cc/paint/BUILD.gn

Issue 2690583002: Make cc/paint have concrete types (Closed)
Patch Set: PaintRecord as typedef, fixup playback calls 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
« no previous file with comments | « cc/layers/painted_overlay_scrollbar_layer.cc ('k') | cc/paint/paint_canvas.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/paint/BUILD.gn
diff --git a/cc/paint/BUILD.gn b/cc/paint/BUILD.gn
index a37d4a6dae577fbc4a58f628b57b8741184207ba..58cdaf410505e7a7b5ccc9bc1497d031c32b5585 100644
--- a/cc/paint/BUILD.gn
+++ b/cc/paint/BUILD.gn
@@ -12,16 +12,23 @@ cc_component("paint") {
"paint_export.h",
"paint_flags.h",
"paint_record.h",
+ "paint_recorder.cc",
"paint_recorder.h",
"paint_shader.h",
+ "paint_surface.cc",
"paint_surface.h",
]
defines = [ "CC_PAINT_IMPLEMENTATION=1" ]
# cc/paint is intended to be a separate component from cc that can be
- # included in Blink. This component should never include //base.
+ # included in Blink. This component should never publicly include
+ # anything that Blink core wouldn't include (e.g. base).
public_deps = [
"//skia",
]
+
+ deps = [
+ "//base",
+ ]
}
« no previous file with comments | « cc/layers/painted_overlay_scrollbar_layer.cc ('k') | cc/paint/paint_canvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698