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

Unified Diff: cc/paint/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 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
new file mode 100644
index 0000000000000000000000000000000000000000..9a47e37d91715485eb8def4ee66c81fedd8a36fa
--- /dev/null
+++ b/cc/paint/BUILD.gn
@@ -0,0 +1,25 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//cc/cc.gni")
+
+cc_component("paint") {
+ output_name = "cc_paint"
+ sources = [
+ "paint_canvas.cc",
+ "paint_canvas.h",
+ "paint_export.h",
+ "paint_flags.h",
+ "paint_record.h",
+ "paint_recorder.h",
+ "paint_shader.h",
+ "paint_surface.h",
+ ]
+
+ defines = [ "CC_PAINT_IMPLEMENTATION=1" ]
+
+ public_deps = [
+ "//skia",
danakj 2017/01/20 23:34:13 Can you make comments about base stuff so people k
enne (OOO) 2017/01/24 01:51:27 Done.
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698