| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//services/catalog/public/tools/catalog.gni") | 7 import("//services/catalog/public/tools/catalog.gni") |
| 8 import("//services/service_manager/public/cpp/service.gni") | 8 import("//services/service_manager/public/cpp/service.gni") |
| 9 import("//services/service_manager/public/service_manifest.gni") | 9 import("//services/service_manager/public/service_manifest.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "views_mus_test_suite.h", | 116 "views_mus_test_suite.h", |
| 117 ] | 117 ] |
| 118 | 118 |
| 119 deps = [ | 119 deps = [ |
| 120 ":mus", | 120 ":mus", |
| 121 "//base", | 121 "//base", |
| 122 "//base/test:test_support", | 122 "//base/test:test_support", |
| 123 "//mojo/edk/system", | 123 "//mojo/edk/system", |
| 124 "//services/catalog:lib", | 124 "//services/catalog:lib", |
| 125 "//services/service_manager/background:lib", | 125 "//services/service_manager/background:lib", |
| 126 "//services/service_manager/public/cpp:sources", | 126 "//services/service_manager/public/cpp", |
| 127 "//services/ui/common:mus_common", | 127 "//services/ui/common:mus_common", |
| 128 "//testing/gtest", | 128 "//testing/gtest", |
| 129 "//ui/aura", | 129 "//ui/aura", |
| 130 "//ui/aura:test_support", | 130 "//ui/aura:test_support", |
| 131 "//ui/compositor:test_support", | 131 "//ui/compositor:test_support", |
| 132 "//ui/gl:test_support", | 132 "//ui/gl:test_support", |
| 133 "//ui/resources", | 133 "//ui/resources", |
| 134 "//ui/resources:ui_test_pak", | 134 "//ui/resources:ui_test_pak", |
| 135 "//ui/views", | 135 "//ui/views", |
| 136 "//ui/views:test_support_internal", | 136 "//ui/views:test_support_internal", |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 copy("views_mus_tests_catalog_copy") { | 301 copy("views_mus_tests_catalog_copy") { |
| 302 testonly = true | 302 testonly = true |
| 303 sources = get_target_outputs(":views_mus_tests_catalog") | 303 sources = get_target_outputs(":views_mus_tests_catalog") |
| 304 outputs = [ | 304 outputs = [ |
| 305 "${root_out_dir}/views_mus_tests_catalog.json", | 305 "${root_out_dir}/views_mus_tests_catalog.json", |
| 306 ] | 306 ] |
| 307 deps = [ | 307 deps = [ |
| 308 ":views_mus_tests_catalog", | 308 ":views_mus_tests_catalog", |
| 309 ] | 309 ] |
| 310 } | 310 } |
| OLD | NEW |