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