| 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 30 matching lines...) Expand all Loading... |
| 41 ":resources", | 41 ":resources", |
| 42 "//services/ui/public/cpp", | 42 "//services/ui/public/cpp", |
| 43 "//ui/aura", | 43 "//ui/aura", |
| 44 ] | 44 ] |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//base:i18n", | 47 "//base:i18n", |
| 48 "//base/third_party/dynamic_annotations", | 48 "//base/third_party/dynamic_annotations", |
| 49 "//cc", | 49 "//cc", |
| 50 "//cc/surfaces", | 50 "//cc/surfaces", |
| 51 "//components/discardable_memory/client", | |
| 52 "//components/discardable_memory/public/interfaces", | |
| 53 "//mojo/common", | 51 "//mojo/common", |
| 54 "//mojo/public/cpp/bindings", | 52 "//mojo/public/cpp/bindings", |
| 55 "//net", | 53 "//net", |
| 56 "//services/catalog/public/cpp", | 54 "//services/catalog/public/cpp", |
| 57 "//services/catalog/public/interfaces:constants", | 55 "//services/catalog/public/interfaces:constants", |
| 58 "//services/service_manager/public/cpp", | 56 "//services/service_manager/public/cpp", |
| 59 "//services/service_manager/public/interfaces", | 57 "//services/service_manager/public/interfaces", |
| 60 "//services/ui/public/cpp", | 58 "//services/ui/public/cpp", |
| 61 "//services/ui/public/interfaces", | 59 "//services/ui/public/interfaces", |
| 62 "//skia", | 60 "//skia", |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 copy("views_mus_tests_catalog_copy") { | 294 copy("views_mus_tests_catalog_copy") { |
| 297 testonly = true | 295 testonly = true |
| 298 sources = get_target_outputs(":views_mus_tests_catalog") | 296 sources = get_target_outputs(":views_mus_tests_catalog") |
| 299 outputs = [ | 297 outputs = [ |
| 300 "${root_out_dir}/views_mus_tests_catalog.json", | 298 "${root_out_dir}/views_mus_tests_catalog.json", |
| 301 ] | 299 ] |
| 302 deps = [ | 300 deps = [ |
| 303 ":views_mus_tests_catalog", | 301 ":views_mus_tests_catalog", |
| 304 ] | 302 ] |
| 305 } | 303 } |
| OLD | NEW |