| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/ui.gni") | |
| 6 import("//services/service_manager/public/cpp/service.gni") | |
| 7 import("//services/service_manager/public/service_manifest.gni") | |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | |
| 9 import("//tools/grit/repack.gni") | |
| 10 | |
| 11 source_set("lib") { | |
| 12 testonly = true | |
| 13 sources = [ | |
| 14 "webtest.cc", | |
| 15 "webtest.h", | |
| 16 ] | |
| 17 | |
| 18 deps = [ | |
| 19 "//base", | |
| 20 "//mash/public/interfaces", | |
| 21 "//mojo/public/cpp/bindings", | |
| 22 "//services/navigation/public/interfaces", | |
| 23 "//services/service_manager/public/cpp", | |
| 24 "//services/service_manager/public/interfaces", | |
| 25 "//services/ui/public/cpp", | |
| 26 "//ui/aura", | |
| 27 "//ui/gfx/geometry/mojo", | |
| 28 "//ui/native_theme", | |
| 29 "//ui/views", | |
| 30 "//ui/views/mus:for_mojo_application", | |
| 31 "//url", | |
| 32 ] | |
| 33 | |
| 34 data_deps = [ | |
| 35 "//services/navigation", | |
| 36 ] | |
| 37 } | |
| 38 | |
| 39 service("webtest") { | |
| 40 testonly = true | |
| 41 sources = [ | |
| 42 "main.cc", | |
| 43 ] | |
| 44 | |
| 45 deps = [ | |
| 46 ":lib", | |
| 47 "//services/service_manager/public/cpp", | |
| 48 "//ui/views/mus:for_mojo_application", | |
| 49 ] | |
| 50 | |
| 51 resources = [ "$root_out_dir/views_mus_resources.pak" ] | |
| 52 } | |
| 53 | |
| 54 service_manifest("manifest") { | |
| 55 name = "webtest" | |
| 56 source = "manifest.json" | |
| 57 } | |
| OLD | NEW |