OLD | NEW |
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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 if (is_chromeos) { | 227 if (is_chromeos) { |
228 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_200_
percent.pak" ] | 228 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_200_
percent.pak" ] |
229 deps += [ "//ui/chromeos/resources" ] | 229 deps += [ "//ui/chromeos/resources" ] |
230 } | 230 } |
231 } | 231 } |
232 | 232 |
233 source_set("unittests") { | 233 source_set("unittests") { |
234 testonly = true | 234 testonly = true |
235 | 235 |
236 sources = [ | 236 sources = [ |
237 "../common/wm_window_unittest.cc", | |
238 "accelerators/accelerator_controller_registrar_test_api.cc", | 237 "accelerators/accelerator_controller_registrar_test_api.cc", |
239 "accelerators/accelerator_controller_registrar_test_api.h", | 238 "accelerators/accelerator_controller_registrar_test_api.h", |
240 "accelerators/accelerator_controller_unittest.cc", | 239 "accelerators/accelerator_controller_unittest.cc", |
241 "accelerators/accelerator_registrar_unittest.cc", | 240 "accelerators/accelerator_registrar_unittest.cc", |
242 "app_launch_unittest.cc", | 241 "app_launch_unittest.cc", |
243 "bridge/wm_shell_mus_test_api.h", | 242 "bridge/wm_shell_mus_test_api.h", |
244 "bridge/wm_window_mus_test_api.h", | 243 "bridge/wm_window_mus_test_api.h", |
245 "layout_manager_unittest.cc", | 244 "layout_manager_unittest.cc", |
246 "root_window_controller_unittest.cc", | 245 "root_window_controller_unittest.cc", |
247 "test/ash_test_impl_mus.cc", | 246 "test/ash_test_impl_mus.cc", |
248 "test/ash_test_impl_mus.h", | 247 "test/ash_test_impl_mus.h", |
249 "test/wm_test_base.cc", | 248 "test/wm_test_base.cc", |
250 "test/wm_test_base.h", | 249 "test/wm_test_base.h", |
251 "test/wm_test_helper.cc", | 250 "test/wm_test_helper.cc", |
252 "test/wm_test_helper.h", | 251 "test/wm_test_helper.h", |
253 "window_manager_unittest.cc", | 252 "window_manager_unittest.cc", |
254 "wm/container_finder_unittest.cc", | 253 "wm/container_finder_unittest.cc", |
255 "wm/mru_window_tracker_unittest.cc", | 254 "wm/mru_window_tracker_unittest.cc", |
256 "workspace/workspace_layout_manager_unittest.cc", | 255 "workspace/workspace_layout_manager_unittest.cc", |
257 ] | 256 ] |
258 | 257 |
259 deps = [ | 258 deps = [ |
260 ":lib", | 259 ":lib", |
261 ":resources", | 260 ":resources", |
262 "//ash", | 261 "//ash", |
263 "//ash:test_support_without_content", | 262 "//ash/common/test:test_support", |
264 "//ash/public/interfaces", | 263 "//ash/public/interfaces", |
265 "//base", | 264 "//base", |
266 "//base/test:test_config", | 265 "//base/test:test_config", |
267 "//base/test:test_support", | 266 "//base/test:test_support", |
268 "//mojo/public/cpp/system", | 267 "//mojo/public/cpp/system", |
269 "//services/shell/public/cpp:service_test_support", | 268 "//services/shell/public/cpp:service_test_support", |
270 "//services/ui/common:mus_common", | 269 "//services/ui/common:mus_common", |
271 "//services/ui/public/cpp", | 270 "//services/ui/public/cpp", |
272 "//services/ui/public/cpp/tests:test_support", | 271 "//services/ui/public/cpp/tests:test_support", |
273 "//services/ui/public/cpp/tests:unittest_support", | 272 "//services/ui/public/cpp/tests:unittest_support", |
(...skipping 13 matching lines...) Expand all Loading... |
287 "//ui/views:test_support", | 286 "//ui/views:test_support", |
288 "//ui/views/mus", | 287 "//ui/views/mus", |
289 ] | 288 ] |
290 | 289 |
291 data_deps = [ | 290 data_deps = [ |
292 ":mus", | 291 ":mus", |
293 "//mash/quick_launch", | 292 "//mash/quick_launch", |
294 ] | 293 ] |
295 | 294 |
296 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 295 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
297 | |
298 if (is_chromeos) { | |
299 sources += | |
300 [ "../common/system/chromeos/brightness/tray_brightness_unittest.cc" ] | |
301 } | |
302 } | 296 } |
OLD | NEW |