| OLD | NEW |
| 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 26 matching lines...) Expand all Loading... |
| 37 "paint_flags.cc", | 37 "paint_flags.cc", |
| 38 "paint_flags.h", | 38 "paint_flags.h", |
| 39 "paint_image.cc", | 39 "paint_image.cc", |
| 40 "paint_image.h", | 40 "paint_image.h", |
| 41 "paint_op_buffer.cc", | 41 "paint_op_buffer.cc", |
| 42 "paint_op_buffer.h", | 42 "paint_op_buffer.h", |
| 43 "paint_record.cc", | 43 "paint_record.cc", |
| 44 "paint_record.h", | 44 "paint_record.h", |
| 45 "paint_recorder.cc", | 45 "paint_recorder.cc", |
| 46 "paint_recorder.h", | 46 "paint_recorder.h", |
| 47 "paint_shader.cc", |
| 47 "paint_shader.h", | 48 "paint_shader.h", |
| 48 "record_paint_canvas.cc", | 49 "record_paint_canvas.cc", |
| 49 "record_paint_canvas.h", | 50 "record_paint_canvas.h", |
| 50 "skia_paint_canvas.cc", | 51 "skia_paint_canvas.cc", |
| 51 "skia_paint_canvas.h", | 52 "skia_paint_canvas.h", |
| 52 "transform_display_item.cc", | 53 "transform_display_item.cc", |
| 53 "transform_display_item.h", | 54 "transform_display_item.h", |
| 54 ] | 55 ] |
| 55 | 56 |
| 56 defines = [ "CC_PAINT_IMPLEMENTATION=1" ] | 57 defines = [ "CC_PAINT_IMPLEMENTATION=1" ] |
| 57 | 58 |
| 58 # cc/paint is intended to be a separate component from cc that can be | 59 # cc/paint is intended to be a separate component from cc that can be |
| 59 # included in Blink. This component should never publicly include | 60 # included in Blink. This component should never publicly include |
| 60 # anything that Blink core wouldn't include (e.g. base). | 61 # anything that Blink core wouldn't include (e.g. base). |
| 61 public_deps = [ | 62 public_deps = [ |
| 62 "//cc/base", | 63 "//cc/base", |
| 63 "//cc/debug", | 64 "//cc/debug", |
| 64 "//skia", | 65 "//skia", |
| 65 "//ui/gfx:color_space", | 66 "//ui/gfx:color_space", |
| 66 "//ui/gfx:geometry_skia", | 67 "//ui/gfx:geometry_skia", |
| 67 "//ui/gfx/geometry", | 68 "//ui/gfx/geometry", |
| 68 ] | 69 ] |
| 69 | 70 |
| 70 deps = [ | 71 deps = [ |
| 71 "//base", | 72 "//base", |
| 72 ] | 73 ] |
| 73 } | 74 } |
| OLD | NEW |