1# Copyright 2014 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("//build/config/linux/pkg_config.gni") 6 7source_set("caca") { 8 sources = [ 9 "caca_event_source.cc", 10 "caca_event_source.h", 11 "caca_window.cc", 12 "caca_window.h", 13 "caca_window_manager.cc", 14 "caca_window_manager.h", 15 "ozone_platform_caca.cc", 16 "ozone_platform_caca.h", 17 "scoped_caca_types.cc", 18 "scoped_caca_types.h", 19 ] 20 21 deps = [ 22 "//base", 23 "//skia", 24 "//ui/gfx/geometry", 25 ] 26 27 configs += [ 28 ":libcaca", 29 ] 30} 31 32pkg_config("libcaca") { 33 packages = [ "caca" ] 34} 35