Chromium Code Reviews| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 176 "//ui/strings", | 176 "//ui/strings", |
| 177 "//ui/views/mus:resources", | 177 "//ui/views/mus:resources", |
| 178 "//ui/views/resources", | 178 "//ui/views/resources", |
| 179 ] | 179 ] |
| 180 } | 180 } |
| 181 | 181 |
| 182 source_set("unittests") { | 182 source_set("unittests") { |
| 183 testonly = true | 183 testonly = true |
| 184 | 184 |
| 185 sources = [ | 185 sources = [ |
| 186 "accelerators/accelerator_controller_registrar_test_api.cc", | |
| 187 "accelerators/accelerator_controller_registrar_test_api.h", | |
| 188 "accelerators/accelerator_controller_unittest.cc", | |
| 186 "accelerators/accelerator_registrar_unittest.cc", | 189 "accelerators/accelerator_registrar_unittest.cc", |
| 187 "app_launch_unittest.cc", | 190 "app_launch_unittest.cc", |
| 191 "bridge/wm_shell_mus_test_api.h", | |
| 188 "layout_manager_unittest.cc", | 192 "layout_manager_unittest.cc", |
| 189 "root_window_controller_unittest.cc", | 193 "root_window_controller_unittest.cc", |
| 190 "test/wm_test_base.cc", | 194 "test/wm_test_base.cc", |
| 191 "test/wm_test_base.h", | 195 "test/wm_test_base.h", |
| 192 "test/wm_test_helper.cc", | 196 "test/wm_test_helper.cc", |
| 193 "test/wm_test_helper.h", | 197 "test/wm_test_helper.h", |
| 194 "test/wm_test_screen.cc", | 198 "test/wm_test_screen.cc", |
| 195 "test/wm_test_screen.h", | 199 "test/wm_test_screen.h", |
| 196 "window_manager_unittest.cc", | 200 "window_manager_unittest.cc", |
| 197 "wm/mru_window_tracker_unittest.cc", | 201 "wm/mru_window_tracker_unittest.cc", |
| 198 "workspace/workspace_layout_manager_unittest.cc", | 202 "workspace/workspace_layout_manager_unittest.cc", |
| 199 ] | 203 ] |
| 200 | 204 |
| 201 deps = [ | 205 deps = [ |
| 202 ":lib", | 206 ":lib", |
| 203 ":resources", | 207 ":resources", |
| 204 "//ash", | 208 "//ash", |
| 209 "//ash:test_support", | |
| 205 "//ash/public/interfaces", | 210 "//ash/public/interfaces", |
| 206 "//base", | 211 "//base", |
| 207 "//base/test:test_config", | 212 "//base/test:test_config", |
| 208 "//mojo/public/cpp/system", | 213 "//mojo/public/cpp/system", |
| 209 "//services/shell/public/cpp:service_test_support", | 214 "//services/shell/public/cpp:service_test_support", |
| 210 "//services/ui/common:mus_common", | 215 "//services/ui/common:mus_common", |
| 211 "//services/ui/public/cpp", | 216 "//services/ui/public/cpp", |
| 212 "//services/ui/public/cpp/tests:test_support", | 217 "//services/ui/public/cpp/tests:test_support", |
| 213 "//services/ui/public/cpp/tests:unittest_support", | 218 "//services/ui/public/cpp/tests:unittest_support", |
| 214 "//services/ui/public/interfaces", | 219 "//services/ui/public/interfaces", |
| 215 "//skia", | 220 "//skia", |
| 216 "//testing/gtest", | 221 "//testing/gtest", |
| 217 "//ui/aura", | 222 "//ui/aura", |
| 218 "//ui/base", | 223 "//ui/base", |
| 224 "//ui/base:test_support", | |
| 219 "//ui/display", | 225 "//ui/display", |
| 220 "//ui/events", | 226 "//ui/events", |
| 227 "//ui/events:test_support", | |
| 221 "//ui/gfx:test_support", | 228 "//ui/gfx:test_support", |
| 222 "//ui/gfx/geometry", | 229 "//ui/gfx/geometry", |
| 223 "//ui/gfx/geometry/mojo", | 230 "//ui/gfx/geometry/mojo", |
| 231 "//ui/message_center:message_center", | |
|
sadrul
2016/08/02 22:39:50
Just ui/message_center?
sky
2016/08/02 22:50:38
Done.
| |
| 224 "//ui/views/mus", | 232 "//ui/views/mus", |
| 225 ] | 233 ] |
| 226 | 234 |
| 227 data_deps = [ | 235 data_deps = [ |
| 228 ":mus", | 236 ":mus", |
| 229 "//mash/quick_launch", | 237 "//mash/quick_launch", |
| 230 ] | 238 ] |
| 231 } | 239 } |
| OLD | NEW |