Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/features.gni") | |
|
msw
2016/10/07 22:02:24
q: what is this needed for? (maybe is_chromeos, bu
sky
2016/10/07 22:23:14
I got lazy. I had one error and copied all the imp
| |
| 6 import("//build/config/ui.gni") | |
|
msw
2016/10/07 22:02:24
nit: probably not needed yet (but maybe will be ev
sky
2016/10/07 22:23:14
Done.
| |
| 7 import("//testing/test.gni") | |
|
msw
2016/10/07 22:02:24
nit: not needed (using source_set here instead of
sky
2016/10/07 22:23:14
Done.
| |
| 8 import("//ui/base/ui_features.gni") | |
|
msw
2016/10/07 22:02:24
nit: probably not needed yet (but maybe will be ev
sky
2016/10/07 22:23:14
Done.
| |
| 9 | |
| 10 source_set("unittests") { | |
| 11 testonly = true | |
| 12 sources = [ | |
| 13 "wm_window_unittest.cc", | |
| 14 ] | |
| 15 deps = [ | |
| 16 "//ash", | |
| 17 "//ash/common/test:test_support", | |
| 18 "//ash/test:test_support_without_content", | |
| 19 "//ui/base", | |
| 20 "//ui/display", | |
| 21 "//ui/keyboard", | |
| 22 "//ui/views", | |
| 23 "//ui/wm", | |
| 24 ] | |
| 25 | |
| 26 if (is_chromeos) { | |
| 27 sources += [ "system/chromeos/brightness/tray_brightness_unittest.cc" ] | |
| 28 } | |
| 29 } | |
| OLD | NEW |