| 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/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("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 public_deps = [ | 54 public_deps = [ |
| 55 ":resources", | 55 ":resources", |
| 56 "//services/ui/public/cpp", | 56 "//services/ui/public/cpp", |
| 57 "//ui/aura", | 57 "//ui/aura", |
| 58 ] | 58 ] |
| 59 deps = [ | 59 deps = [ |
| 60 "//base", | 60 "//base", |
| 61 "//base:i18n", | 61 "//base:i18n", |
| 62 "//base/third_party/dynamic_annotations", | 62 "//base/third_party/dynamic_annotations", |
| 63 "//cc", | 63 "//cc", |
| 64 "//cc/animation", |
| 64 "//cc/surfaces", | 65 "//cc/surfaces", |
| 65 "//mojo/common", | 66 "//mojo/common", |
| 66 "//mojo/public/cpp/bindings", | 67 "//mojo/public/cpp/bindings", |
| 67 "//net", | 68 "//net", |
| 68 "//services/catalog/public/cpp", | 69 "//services/catalog/public/cpp", |
| 69 "//services/catalog/public/interfaces:constants", | 70 "//services/catalog/public/interfaces:constants", |
| 70 "//services/service_manager/public/cpp", | 71 "//services/service_manager/public/cpp", |
| 71 "//services/service_manager/public/interfaces", | 72 "//services/service_manager/public/interfaces", |
| 72 "//services/ui/public/cpp", | 73 "//services/ui/public/cpp", |
| 73 "//services/ui/public/interfaces", | 74 "//services/ui/public/interfaces", |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 | 402 |
| 402 service_manifest("unittests_aura_manifest") { | 403 service_manifest("unittests_aura_manifest") { |
| 403 name = "views_aura_mus_unittests" | 404 name = "views_aura_mus_unittests" |
| 404 source = "unittests_aura_manifest.json" | 405 source = "unittests_aura_manifest.json" |
| 405 } | 406 } |
| 406 | 407 |
| 407 service_manifest("interactive_ui_tests_manifest") { | 408 service_manifest("interactive_ui_tests_manifest") { |
| 408 name = "views_mus_interactive_ui_tests" | 409 name = "views_mus_interactive_ui_tests" |
| 409 source = "interactive_ui_tests_manifest.json" | 410 source = "interactive_ui_tests_manifest.json" |
| 410 } | 411 } |
| OLD | NEW |