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

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

Issue 2400063003: Adds more BUILD.gns to ash (Closed)
Patch Set: not relative Created 4 years, 2 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 74
75 sources = [ 75 sources = [
76 "test/exo_test_base.cc", 76 "test/exo_test_base.cc",
77 "test/exo_test_base.h", 77 "test/exo_test_base.h",
78 "test/exo_test_helper.cc", 78 "test/exo_test_helper.cc",
79 "test/exo_test_helper.h", 79 "test/exo_test_helper.h",
80 ] 80 ]
81 81
82 deps = [ 82 deps = [
83 ":exo", 83 ":exo",
84 "//ash:ash_with_aura_test_support", 84 "//ash/test:ash_with_aura_test_support",
85 "//ash:test_support_without_content", 85 "//ash/test:test_support_without_content",
86 "//base", 86 "//base",
87 "//gpu", 87 "//gpu",
88 "//skia", 88 "//skia",
89 "//testing/gtest", 89 "//testing/gtest",
90 "//ui/aura", 90 "//ui/aura",
91 "//ui/compositor", 91 "//ui/compositor",
92 "//ui/gfx/geometry", 92 "//ui/gfx/geometry",
93 "//ui/wm:wm", 93 "//ui/wm:wm",
94 ] 94 ]
95 } 95 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 } 139 }
140 } 140 }
141 141
142 test("exo_unittests") { 142 test("exo_unittests") {
143 sources = [ 143 sources = [
144 "test/run_all_unittests.cc", 144 "test/run_all_unittests.cc",
145 ] 145 ]
146 146
147 deps = [ 147 deps = [
148 ":unit_tests", 148 ":unit_tests",
149 "//ash:ash_with_aura_test_support", 149 "//ash/test:ash_with_aura_test_support",
150 "//ash:test_support_without_content", 150 "//ash/test:test_support_without_content",
151 "//base", 151 "//base",
152 "//base/test:test_support", 152 "//base/test:test_support",
153 "//device/gamepad:test_helpers", 153 "//device/gamepad:test_helpers",
154 ] 154 ]
155 155
156 data_deps = [ 156 data_deps = [
157 "//ash/common/strings:ash_test_strings", 157 "//ash/common/strings:ash_test_strings",
158 "//ash/resources:ash_test_resources_100_percent", 158 "//ash/resources:ash_test_resources_100_percent",
159 "//ash/resources:ash_test_resources_200_percent", 159 "//ash/resources:ash_test_resources_200_percent",
160 ] 160 ]
161 161
162 if (use_x11) { 162 if (use_x11) {
163 deps += [ "//tools/xdisplaycheck" ] 163 deps += [ "//tools/xdisplaycheck" ]
164 } 164 }
165 165
166 if (is_linux) { 166 if (is_linux) {
167 deps += [ "//components/exo/wayland:unit_tests" ] 167 deps += [ "//components/exo/wayland:unit_tests" ]
168 } 168 }
169 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698