summaryrefslogtreecommitdiffstats
path: root/chromecast/graphics/BUILD.gn
blob: 1d4232231a958e0855f915f50644527629a1dbac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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.

import("//chromecast/chromecast.gni")
import("//build/config/ui.gni")

if (use_aura) {
  source_set("graphics") {
    sources = [
      "cast_screen.cc",
      "cast_screen.h",
    ]

    deps = [
      "//ui/aura",
      "//ui/gfx",
      "//ui/gfx/geometry",
    ]
  }
}

shared_library("libcast_graphics_1.0") {
  sources = [
    "cast_egl_platform_default.cc",
    "graphics_properties_default.cc",
    "osd_plane_default.cc",
  ]

  public_deps = [
    "//chromecast/public",
  ]

  deps = [
    "//base",
  ]
}