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

Side by Side Diff: ui/base/x/BUILD.gn

Issue 2177823002: X11: Add window cache Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix API Created 4 years, 2 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
« no previous file with comments | « ui/base/BUILD.gn ('k') | ui/base/x/x11_window_cache.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 import("//build/config/ui.gni") 4 import("//build/config/ui.gni")
5 import("//ui/ozone/ozone.gni") 5 import("//ui/ozone/ozone.gni")
6 6
7 assert(use_x11 || ozone_platform_x11) 7 assert(use_x11 || ozone_platform_x11)
8 8
9 component("x") { 9 component("x") {
10 output_name = "ui_base_x" 10 output_name = "ui_base_x"
(...skipping 17 matching lines...) Expand all
28 "//base", 28 "//base",
29 "//base:i18n", 29 "//base:i18n",
30 "//skia", 30 "//skia",
31 "//ui/events", 31 "//ui/events",
32 "//ui/events/devices/x11", 32 "//ui/events/devices/x11",
33 "//ui/events/keycodes:x11", 33 "//ui/events/keycodes:x11",
34 "//ui/gfx", 34 "//ui/gfx",
35 "//ui/gfx/x", 35 "//ui/gfx/x",
36 ] 36 ]
37 } 37 }
38
39 component("x_window_cache") {
40 output_name = "ui_base_x_window_cache"
41
42 defines = [ "UI_BASE_X_IMPLEMENTATION" ]
43
44 sources = [
45 "x11_window_cache.cc",
46 "x11_window_cache.h",
47 ]
48
49 configs += [ "//build/config/linux:x11" ]
50
51 deps = [
52 "//base",
53 "//ui/events/platform/x11",
54 ]
55 }
OLDNEW
« no previous file with comments | « ui/base/BUILD.gn ('k') | ui/base/x/x11_window_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698