| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", |
| 137 ] | 137 ] |
| 138 | 138 |
| 139 if (use_ozone) { |
| 140 deps += [ "//ui/ozone" ] |
| 141 } |
| 142 |
| 139 data_deps = [ | 143 data_deps = [ |
| 140 ":views_mus_tests_catalog", | 144 ":views_mus_tests_catalog", |
| 141 "//ui/resources:ui_test_pak_data", | 145 "//ui/resources:ui_test_pak_data", |
| 142 ] | 146 ] |
| 143 } | 147 } |
| 144 | 148 |
| 145 test("views_mus_unittests") { | 149 test("views_mus_unittests") { |
| 146 testonly = true | 150 testonly = true |
| 147 | 151 |
| 148 sources = [ | 152 sources = [ |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 copy("views_mus_tests_catalog_copy") { | 301 copy("views_mus_tests_catalog_copy") { |
| 298 testonly = true | 302 testonly = true |
| 299 sources = get_target_outputs(":views_mus_tests_catalog") | 303 sources = get_target_outputs(":views_mus_tests_catalog") |
| 300 outputs = [ | 304 outputs = [ |
| 301 "${root_out_dir}/views_mus_tests_catalog.json", | 305 "${root_out_dir}/views_mus_tests_catalog.json", |
| 302 ] | 306 ] |
| 303 deps = [ | 307 deps = [ |
| 304 ":views_mus_tests_catalog", | 308 ":views_mus_tests_catalog", |
| 305 ] | 309 ] |
| 306 } | 310 } |
| OLD | NEW |