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

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

Issue 2065133002: exo: Implement notification surface support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@notification-wayland-protocol
Patch Set: add NotificationServiceRegistry to track notification surface Created 4 years, 6 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 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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 source_set("exo") { 8 source_set("exo") {
9 sources = [ 9 sources = [
10 "buffer.cc", 10 "buffer.cc",
11 "buffer.h", 11 "buffer.h",
12 "display.cc", 12 "display.cc",
13 "display.h", 13 "display.h",
14 "keyboard.cc", 14 "keyboard.cc",
15 "keyboard.h", 15 "keyboard.h",
16 "keyboard_delegate.h", 16 "keyboard_delegate.h",
17 "notification_surface.cc",
18 "notification_surface.h",
19 "notification_surface_registry.cc",
20 "notification_surface_registry.h",
17 "pointer.cc", 21 "pointer.cc",
18 "pointer.h", 22 "pointer.h",
19 "pointer_delegate.h", 23 "pointer_delegate.h",
20 "shared_memory.cc", 24 "shared_memory.cc",
21 "shared_memory.h", 25 "shared_memory.h",
22 "shell_surface.cc", 26 "shell_surface.cc",
23 "shell_surface.h", 27 "shell_surface.h",
24 "sub_surface.cc", 28 "sub_surface.cc",
25 "sub_surface.h", 29 "sub_surface.h",
26 "surface.cc", 30 "surface.cc",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 deps = [ 125 deps = [
122 ":unit_tests", 126 ":unit_tests",
123 "//ash:test_support", 127 "//ash:test_support",
124 "//base", 128 "//base",
125 "//base/test:test_support", 129 "//base/test:test_support",
126 ] 130 ]
127 if (is_linux) { 131 if (is_linux) {
128 deps += [ "//components/exo/wayland:unit_tests" ] 132 deps += [ "//components/exo/wayland:unit_tests" ]
129 } 133 }
130 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698