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

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

Issue 2404513002: exo: Implement zcr_linux_explicit_synchronization_v1
Patch Set: rebase, pull in cl 2443823002 Created 4 years, 1 month 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 | « AUTHORS ('k') | components/exo/DEPS » ('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 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",
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 "//ui/aura", 129 "//ui/aura",
130 "//ui/events:dom_keycode_converter", 130 "//ui/events:dom_keycode_converter",
131 "//ui/events:test_support", 131 "//ui/events:test_support",
132 "//ui/gfx", 132 "//ui/gfx",
133 "//ui/keyboard", 133 "//ui/keyboard",
134 "//ui/message_center", 134 "//ui/message_center",
135 "//ui/views", 135 "//ui/views",
136 "//ui/wm:wm", 136 "//ui/wm:wm",
137 ] 137 ]
138 138
139 if (is_linux) {
140 deps += [ "//third_party/libsync:libsync" ]
141 }
142
139 if (use_ozone) { 143 if (use_ozone) {
140 deps += [ "//ui/ozone" ] 144 deps += [ "//ui/ozone" ]
141 } 145 }
142 } 146 }
143 147
144 test("exo_unittests") { 148 test("exo_unittests") {
145 sources = [ 149 sources = [
146 "test/run_all_unittests.cc", 150 "test/run_all_unittests.cc",
147 ] 151 ]
148 152
(...skipping 13 matching lines...) Expand all
162 ] 166 ]
163 167
164 if (use_x11) { 168 if (use_x11) {
165 deps += [ "//tools/xdisplaycheck" ] 169 deps += [ "//tools/xdisplaycheck" ]
166 } 170 }
167 171
168 if (is_linux) { 172 if (is_linux) {
169 deps += [ "//components/exo/wayland:unit_tests" ] 173 deps += [ "//components/exo/wayland:unit_tests" ]
170 } 174 }
171 } 175 }
OLDNEW
« no previous file with comments | « AUTHORS ('k') | components/exo/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698