BUILD.gn 1.5 KB
Newer Older
1 2 3 4
# Copyright 2015 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.

A
Adam Barth 已提交
5
source_set("flow") {
6
  sources = [
7 8
    "checkerboard.cc",
    "checkerboard.h",
9 10
    "compositor_context.cc",
    "compositor_context.h",
11 12
    "instrumentation.cc",
    "instrumentation.h",
13 14
    "layers/backdrop_filter_layer.cc",
    "layers/backdrop_filter_layer.h",
A
Adam Barth 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    "layers/child_scene_layer.cc",
    "layers/child_scene_layer.h",
    "layers/clip_path_layer.cc",
    "layers/clip_path_layer.h",
    "layers/clip_rect_layer.cc",
    "layers/clip_rect_layer.h",
    "layers/clip_rrect_layer.cc",
    "layers/clip_rrect_layer.h",
    "layers/color_filter_layer.cc",
    "layers/color_filter_layer.h",
    "layers/container_layer.cc",
    "layers/container_layer.h",
    "layers/layer.cc",
    "layers/layer.h",
    "layers/layer_tree.cc",
    "layers/layer_tree.h",
    "layers/opacity_layer.cc",
    "layers/opacity_layer.h",
    "layers/performance_overlay_layer.cc",
    "layers/performance_overlay_layer.h",
    "layers/picture_layer.cc",
    "layers/picture_layer.h",
    "layers/shader_mask_layer.cc",
    "layers/shader_mask_layer.h",
    "layers/transform_layer.cc",
    "layers/transform_layer.h",
41
    "open_gl.h",
42 43
    "raster_cache.cc",
    "raster_cache.h",
44 45
    "texture_image.cc",
    "texture_image.h",
46 47 48 49
  ]

  deps = [
    "//base",
50
    "//mojo/services/gfx/composition/interfaces",
51 52
    "//mojo/skia",
    "//skia",
53 54
  ]
}