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

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

Issue 1128113011: ozone: Introduce ClientPixmap and ClientPixmapFactory for non-GPU processes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed nits Created 5 years, 4 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",
11 "caca_window.cc", 11 "caca_window.cc",
12 "caca_window.h", 12 "caca_window.h",
13 "caca_window_manager.cc", 13 "caca_window_manager.cc",
14 "caca_window_manager.h", 14 "caca_window_manager.h",
15 "client_native_pixmap_manager_caca.cc",
16 "client_native_pixmap_manager_caca.h",
15 "ozone_platform_caca.cc", 17 "ozone_platform_caca.cc",
16 "ozone_platform_caca.h", 18 "ozone_platform_caca.h",
17 "scoped_caca_types.cc", 19 "scoped_caca_types.cc",
18 "scoped_caca_types.h", 20 "scoped_caca_types.h",
19 ] 21 ]
20 22
21 deps = [ 23 deps = [
22 "//base", 24 "//base",
23 "//skia", 25 "//skia",
24 "//ui/events/ozone:events_ozone_layout", 26 "//ui/events/ozone:events_ozone_layout",
25 "//ui/events/platform", 27 "//ui/events/platform",
26 "//ui/gfx/geometry", 28 "//ui/gfx/geometry",
27 ] 29 ]
28 30
29 configs += [ ":libcaca" ] 31 configs += [ ":libcaca" ]
30 } 32 }
31 33
32 pkg_config("libcaca") { 34 pkg_config("libcaca") {
33 packages = [ "caca" ] 35 packages = [ "caca" ]
34 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698