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/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 206 | 206 |
| 207 source_set("unittests") { | 207 source_set("unittests") { |
| 208 testonly = true | 208 testonly = true |
| 209 | 209 |
| 210 sources = [ | 210 sources = [ |
| 211 "accelerators/accelerator_controller_registrar_test_api.cc", | 211 "accelerators/accelerator_controller_registrar_test_api.cc", |
| 212 "accelerators/accelerator_controller_registrar_test_api.h", | 212 "accelerators/accelerator_controller_registrar_test_api.h", |
| 213 "accelerators/accelerator_controller_unittest.cc", | 213 "accelerators/accelerator_controller_unittest.cc", |
| 214 "app_launch_unittest.cc", | 214 "app_launch_unittest.cc", |
| 215 "bridge/wm_shell_mus_test_api.h", | 215 "bridge/wm_shell_mus_test_api.h", |
| 216 "bridge/wm_window_mus_test_api.cc", | 216 "bridge/wm_window_aura_test_api.cc", |
|
James Cook
2017/01/05 02:50:09
These files should either live in //ash/aura along
sky
2017/01/05 16:17:01
I was a bit hesitant to do that as it means making
| |
| 217 "bridge/wm_window_mus_test_api.h", | 217 "bridge/wm_window_aura_test_api.h", |
| 218 "root_window_controller_unittest.cc", | 218 "root_window_controller_unittest.cc", |
| 219 "test/ash_test_impl_mus.cc", | 219 "test/ash_test_impl_mus.cc", |
| 220 "test/ash_test_impl_mus.h", | 220 "test/ash_test_impl_mus.h", |
| 221 "test/wm_test_base.cc", | 221 "test/wm_test_base.cc", |
| 222 "test/wm_test_base.h", | 222 "test/wm_test_base.h", |
| 223 "test/wm_test_helper.cc", | 223 "test/wm_test_helper.cc", |
| 224 "test/wm_test_helper.h", | 224 "test/wm_test_helper.h", |
| 225 "window_manager_unittest.cc", | 225 "window_manager_unittest.cc", |
| 226 ] | 226 ] |
| 227 | 227 |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 258 "//ui/views/mus", | 258 "//ui/views/mus", |
| 259 ] | 259 ] |
| 260 | 260 |
| 261 data_deps = [ | 261 data_deps = [ |
| 262 ":mus", | 262 ":mus", |
| 263 "//mash/quick_launch", | 263 "//mash/quick_launch", |
| 264 ] | 264 ] |
| 265 | 265 |
| 266 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 266 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 267 } | 267 } |
| OLD | NEW |