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

Side by Side Diff: components/exo/wayland/BUILD.gn

Issue 1411403007: exo: Add minimal support for xdg-shell interface to wayland bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@weston-third-party
Patch Set: rebase Created 5 years 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 | « components/exo.gypi ('k') | components/exo/wayland/server.cc » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 source_set("wayland") { 7 source_set("wayland") {
8 sources = [ 8 sources = [
9 "scoped_wl_types.cc", 9 "scoped_wl_types.cc",
10 "scoped_wl_types.h", 10 "scoped_wl_types.h",
11 "server.cc", 11 "server.cc",
12 "server.h", 12 "server.h",
13 ] 13 ]
14 14
15 defines = [ "EXO_IMPLEMENTATION" ] 15 defines = [ "EXO_IMPLEMENTATION" ]
16 16
17 deps = [ 17 deps = [
18 "//base", 18 "//base",
19 "//components/exo", 19 "//components/exo",
20 "//skia", 20 "//skia",
21 "//third_party/wayland:wayland_server", 21 "//third_party/wayland:wayland_server",
22 "//third_party/wayland-protocols:xdg_shell_protocol",
22 ] 23 ]
23 24
24 if (use_ozone) { 25 if (use_ozone) {
25 deps += [ "//third_party/mesa:wayland_drm_protocol" ] 26 deps += [ "//third_party/mesa:wayland_drm_protocol" ]
26 } 27 }
27 } 28 }
28 29
29 source_set("unit_tests") { 30 source_set("unit_tests") {
30 testonly = true 31 testonly = true
31 32
32 sources = [ 33 sources = [
33 "server_unittest.cc", 34 "server_unittest.cc",
34 ] 35 ]
35 36
36 deps = [ 37 deps = [
37 ":wayland", 38 ":wayland",
38 "//base", 39 "//base",
39 "//components/exo", 40 "//components/exo",
40 "//testing/gtest", 41 "//testing/gtest",
41 "//third_party/wayland:wayland_client", 42 "//third_party/wayland:wayland_client",
42 ] 43 ]
43 } 44 }
OLDNEW
« no previous file with comments | « components/exo.gypi ('k') | components/exo/wayland/server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698