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

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

Issue 2768143002: Back PaintRecord with PaintOpBuffer instead of SkPicture (Closed)
Patch Set: More unit tests Created 3 years, 8 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 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 "clip_display_item.cc", 10 "clip_display_item.cc",
(...skipping 14 matching lines...) Expand all
25 "filter_display_item.cc", 25 "filter_display_item.cc",
26 "filter_display_item.h", 26 "filter_display_item.h",
27 "float_clip_display_item.cc", 27 "float_clip_display_item.cc",
28 "float_clip_display_item.h", 28 "float_clip_display_item.h",
29 "image_id.h", 29 "image_id.h",
30 "largest_display_item.cc", 30 "largest_display_item.cc",
31 "largest_display_item.h", 31 "largest_display_item.h",
32 "paint_canvas.cc", 32 "paint_canvas.cc",
33 "paint_canvas.h", 33 "paint_canvas.h",
34 "paint_export.h", 34 "paint_export.h",
35 "paint_flags.cc",
35 "paint_flags.h", 36 "paint_flags.h",
37 "paint_op_buffer.cc",
38 "paint_op_buffer.h",
39 "paint_record.cc",
36 "paint_record.h", 40 "paint_record.h",
37 "paint_recorder.cc", 41 "paint_recorder.cc",
38 "paint_recorder.h", 42 "paint_recorder.h",
39 "paint_shader.h", 43 "paint_shader.h",
44 "record_paint_canvas.cc",
45 "record_paint_canvas.h",
40 "skia_paint_canvas.cc", 46 "skia_paint_canvas.cc",
41 "skia_paint_canvas.h", 47 "skia_paint_canvas.h",
42 "transform_display_item.cc", 48 "transform_display_item.cc",
43 "transform_display_item.h", 49 "transform_display_item.h",
44 ] 50 ]
45 51
46 defines = [ "CC_PAINT_IMPLEMENTATION=1" ] 52 defines = [ "CC_PAINT_IMPLEMENTATION=1" ]
47 53
48 # cc/paint is intended to be a separate component from cc that can be 54 # cc/paint is intended to be a separate component from cc that can be
49 # included in Blink. This component should never publicly include 55 # included in Blink. This component should never publicly include
50 # anything that Blink core wouldn't include (e.g. base). 56 # anything that Blink core wouldn't include (e.g. base).
51 public_deps = [ 57 public_deps = [
52 "//cc/base", 58 "//cc/base",
53 "//cc/debug", 59 "//cc/debug",
54 "//skia", 60 "//skia",
55 "//ui/gfx:color_space", 61 "//ui/gfx:color_space",
56 "//ui/gfx:geometry_skia", 62 "//ui/gfx:geometry_skia",
57 "//ui/gfx/geometry", 63 "//ui/gfx/geometry",
58 ] 64 ]
59 65
60 deps = [ 66 deps = [
61 "//base", 67 "//base",
62 ] 68 ]
63 } 69 }
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | cc/paint/display_item_list.cc » ('j') | cc/paint/display_item_list.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698