summaryrefslogtreecommitdiffstats
path: root/ui/ozone/platform/caca/BUILD.gn
blob: fd164f88908f2e5af7fb0326019f72f70786cb88 (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
# Copyright 2014 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("//build/config/linux/pkg_config.gni")

source_set("caca") {
  sources = [
    "caca_event_source.cc",
    "caca_event_source.h",
    "caca_window.cc",
    "caca_window.h",
    "caca_window_manager.cc",
    "caca_window_manager.h",
    "ozone_platform_caca.cc",
    "ozone_platform_caca.h",
    "scoped_caca_types.cc",
    "scoped_caca_types.h",
  ]

  deps = [
    "//base",
    "//skia",
    "//ui/events/ozone:events_ozone_layout",
    "//ui/events/platform",
    "//ui/gfx/geometry",
  ]

  configs += [ ":libcaca" ]
}

pkg_config("libcaca") {
  packages = [ "caca" ]
}