| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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:sources", |
| 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/gl:test_support", | 132 "//ui/gl:test_support", |
| 132 "//ui/resources", | 133 "//ui/resources", |
| 133 "//ui/resources:ui_test_pak", | 134 "//ui/resources:ui_test_pak", |
| 134 "//ui/views", | 135 "//ui/views", |
| 135 "//ui/views:test_support_internal", | 136 "//ui/views:test_support_internal", |
| 136 ] | 137 ] |
| 137 | 138 |
| 138 data_deps = [ | 139 data_deps = [ |
| 139 ":views_mus_tests_catalog", | 140 ":views_mus_tests_catalog", |
| 140 "//ui/resources:ui_test_pak_data", | 141 "//ui/resources:ui_test_pak_data", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 copy("views_mus_tests_catalog_copy") { | 295 copy("views_mus_tests_catalog_copy") { |
| 295 testonly = true | 296 testonly = true |
| 296 sources = get_target_outputs(":views_mus_tests_catalog") | 297 sources = get_target_outputs(":views_mus_tests_catalog") |
| 297 outputs = [ | 298 outputs = [ |
| 298 "${root_out_dir}/views_mus_tests_catalog.json", | 299 "${root_out_dir}/views_mus_tests_catalog.json", |
| 299 ] | 300 ] |
| 300 deps = [ | 301 deps = [ |
| 301 ":views_mus_tests_catalog", | 302 ":views_mus_tests_catalog", |
| 302 ] | 303 ] |
| 303 } | 304 } |
| OLD | NEW |