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

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

Issue 1602173005: Add PlatformWindow/Event related code for Ozone X11. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes for comments. 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
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("x11") {
6 sources = [
7 "client_native_pixmap_factory_x11.cc",
8 "client_native_pixmap_factory_x11.h",
9 "ozone_platform_x11.cc",
10 "ozone_platform_x11.h",
11 "x11_surface_factory.cc",
12 "x11_surface_factory.h",
13 ]
14
15 deps = [
16 "//base",
17 "//ipc",
18 "//skia",
19 "//ui/base",
20 "//ui/display/types",
21 "//ui/display/util",
22 "//ui/events",
23 "//ui/events/devices",
24 "//ui/events/ozone:events_ozone",
25 "//ui/events/platform",
26 "//ui/events/platform/x11",
27 "//ui/events/x",
28 "//ui/gfx",
29 "//ui/gfx/geometry",
30 "//ui/gfx/x",
31 "//ui/ozone:ozone_base",
32 "//ui/platform_window/x11",
33 ]
34
35 configs += [ "//build/config/linux:x11" ]
36
37 public_configs = [ "//third_party/khronos:khronos_headers" ]
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698