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

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

Issue 2250863003: exo: Run exo in mus+ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review issues Created 4 years, 4 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",
(...skipping 20 matching lines...) Expand all
31 "surface.cc", 31 "surface.cc",
32 "surface.h", 32 "surface.h",
33 "surface_delegate.h", 33 "surface_delegate.h",
34 "surface_observer.h", 34 "surface_observer.h",
35 "surface_property.h", 35 "surface_property.h",
36 "touch.cc", 36 "touch.cc",
37 "touch.h", 37 "touch.h",
38 "touch_delegate.h", 38 "touch_delegate.h",
39 "wm_helper.cc", 39 "wm_helper.cc",
40 "wm_helper.h", 40 "wm_helper.h",
41 "wm_helper_ash.cc",
42 "wm_helper_ash.h",
43 "wm_helper_mus.cc",
44 "wm_helper_mus.h",
41 ] 45 ]
42 46
43 deps = [ 47 deps = [
44 "//ash", 48 "//ash",
45 "//base", 49 "//base",
46 "//cc", 50 "//cc",
47 "//cc/surfaces:surfaces", 51 "//cc/surfaces:surfaces",
48 "//device/gamepad", 52 "//device/gamepad",
49 "//gpu", 53 "//gpu",
50 "//gpu/command_buffer/client:gles2_interface", 54 "//gpu/command_buffer/client:gles2_interface",
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 ] 151 ]
148 152
149 if (use_x11) { 153 if (use_x11) {
150 deps += [ "//tools/xdisplaycheck" ] 154 deps += [ "//tools/xdisplaycheck" ]
151 } 155 }
152 156
153 if (is_linux) { 157 if (is_linux) {
154 deps += [ "//components/exo/wayland:unit_tests" ] 158 deps += [ "//components/exo/wayland:unit_tests" ]
155 } 159 }
156 } 160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698