| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 | 6 |
| 7 source_set("caca") { | 7 source_set("caca") { |
| 8 sources = [ | 8 sources = [ |
| 9 "caca_event_source.cc", | 9 "caca_event_source.cc", |
| 10 "caca_event_source.h", | 10 "caca_event_source.h", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 deps = [ | 23 deps = [ |
| 24 "//base", | 24 "//base", |
| 25 "//skia", | 25 "//skia", |
| 26 "//ui/events", | 26 "//ui/events", |
| 27 "//ui/events/ozone:events_ozone_layout", | 27 "//ui/events/ozone:events_ozone_layout", |
| 28 "//ui/events/platform", | 28 "//ui/events/platform", |
| 29 "//ui/gfx", | 29 "//ui/gfx", |
| 30 "//ui/gfx/geometry", | 30 "//ui/gfx/geometry", |
| 31 "//ui/ozone:ozone_base", | 31 "//ui/ozone:ozone_base", |
| 32 "//ui/platform_window", |
| 32 ] | 33 ] |
| 33 | 34 |
| 34 configs += [ ":libcaca" ] | 35 configs += [ ":libcaca" ] |
| 35 } | 36 } |
| 36 | 37 |
| 37 pkg_config("libcaca") { | 38 pkg_config("libcaca") { |
| 38 packages = [ "caca" ] | 39 packages = [ "caca" ] |
| 39 } | 40 } |
| OLD | NEW |