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

Side by Side Diff: cc/paint/BUILD.gn

Issue 2752593002: cc: Make PaintCanvas abstract (Closed)
Patch Set: Remove default parameters on virtual functions 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 unified diff | Download patch
« no previous file with comments | « cc/output/renderer_pixeltest.cc ('k') | cc/paint/paint_canvas.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("//cc/cc.gni") 5 import("//cc/cc.gni")
6 6
7 cc_component("paint") { 7 cc_component("paint") {
8 output_name = "cc_paint" 8 output_name = "cc_paint"
9 sources = [ 9 sources = [
10 "paint_canvas.cc", 10 "paint_canvas.cc",
11 "paint_canvas.h", 11 "paint_canvas.h",
12 "paint_export.h", 12 "paint_export.h",
13 "paint_flags.h", 13 "paint_flags.h",
14 "paint_record.h", 14 "paint_record.h",
15 "paint_recorder.cc", 15 "paint_recorder.cc",
16 "paint_recorder.h", 16 "paint_recorder.h",
17 "paint_shader.h", 17 "paint_shader.h",
18 "paint_surface.cc", 18 "paint_surface.cc",
19 "paint_surface.h", 19 "paint_surface.h",
20 "skia_paint_canvas.cc",
21 "skia_paint_canvas.h",
20 ] 22 ]
21 23
22 defines = [ "CC_PAINT_IMPLEMENTATION=1" ] 24 defines = [ "CC_PAINT_IMPLEMENTATION=1" ]
23 25
24 # cc/paint is intended to be a separate component from cc that can be 26 # cc/paint is intended to be a separate component from cc that can be
25 # included in Blink. This component should never publicly include 27 # included in Blink. This component should never publicly include
26 # anything that Blink core wouldn't include (e.g. base). 28 # anything that Blink core wouldn't include (e.g. base).
27 public_deps = [ 29 public_deps = [
28 "//skia", 30 "//skia",
29 ] 31 ]
30 32
31 deps = [ 33 deps = [
32 "//base", 34 "//base",
33 ] 35 ]
34 } 36 }
OLDNEW
« no previous file with comments | « cc/output/renderer_pixeltest.cc ('k') | cc/paint/paint_canvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698