Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: ui/ozone/platform/caca/BUILD.gn

Issue 1716543003: ozone: Use allow_circular_includes_from to fix deps issue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698