Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: mash/webtest/BUILD.gn

Issue 1977263002: Add another client of the navigation service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@browser
Patch Set: . Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mash/BUILD.gn ('k') | mash/webtest/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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("//mojo/public/mojo_application.gni")
7 import("//mojo/public/mojo_application_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 "//components/mus/public/cpp",
21 "//mash/public/interfaces",
22 "//mojo/converters/geometry",
23 "//mojo/public/cpp/bindings",
24 "//services/navigation/public/interfaces",
25 "//services/shell/public/cpp",
26 "//services/shell/public/interfaces",
27 "//services/tracing/public/cpp",
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 mojo_native_application("webtest") {
40 testonly = true
41 sources = [
42 "main.cc",
43 ]
44
45 deps = [
46 ":lib",
47 "//services/shell/public/cpp",
48 "//ui/views/mus:for_mojo_application",
49 ]
50
51 resources = [ "$root_out_dir/views_mus_resources.pak" ]
52
53 data_deps = [
54 ":manifest",
55 "//components/mus",
56 ]
57 }
58
59 mojo_application_manifest("manifest") {
60 application_name = "webtest"
61 source = "manifest.json"
62 }
OLDNEW
« no previous file with comments | « mash/BUILD.gn ('k') | mash/webtest/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698