| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 source_set("lib") { | 11 source_set("lib") { |
| 12 testonly = true | 12 testonly = true |
| 13 sources = [ | 13 sources = [ |
| 14 "webtest.cc", | 14 "webtest.cc", |
| 15 "webtest.h", | 15 "webtest.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 "//mash/public/interfaces", | 20 "//mash/public/interfaces", |
| 21 "//mojo/public/cpp/bindings", | 21 "//mojo/public/cpp/bindings", |
| 22 "//services/navigation/public/interfaces", | 22 "//services/navigation/public/interfaces", |
| 23 "//services/service_manager/public/cpp", | 23 "//services/service_manager/public/cpp", |
| 24 "//services/service_manager/public/interfaces", | 24 "//services/service_manager/public/interfaces", |
| 25 "//services/tracing/public/cpp", | |
| 26 "//services/ui/public/cpp", | 25 "//services/ui/public/cpp", |
| 27 "//ui/aura", | 26 "//ui/aura", |
| 28 "//ui/gfx/geometry/mojo", | 27 "//ui/gfx/geometry/mojo", |
| 29 "//ui/native_theme", | 28 "//ui/native_theme", |
| 30 "//ui/views", | 29 "//ui/views", |
| 31 "//ui/views/mus:for_mojo_application", | 30 "//ui/views/mus:for_mojo_application", |
| 32 "//url", | 31 "//url", |
| 33 ] | 32 ] |
| 34 | 33 |
| 35 data_deps = [ | 34 data_deps = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 49 "//ui/views/mus:for_mojo_application", | 48 "//ui/views/mus:for_mojo_application", |
| 50 ] | 49 ] |
| 51 | 50 |
| 52 resources = [ "$root_out_dir/views_mus_resources.pak" ] | 51 resources = [ "$root_out_dir/views_mus_resources.pak" ] |
| 53 } | 52 } |
| 54 | 53 |
| 55 service_manifest("manifest") { | 54 service_manifest("manifest") { |
| 56 name = "webtest" | 55 name = "webtest" |
| 57 source = "manifest.json" | 56 source = "manifest.json" |
| 58 } | 57 } |
| OLD | NEW |