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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mash/BUILD.gn ('k') | mash/webtest/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/webtest/BUILD.gn
diff --git a/mash/webtest/BUILD.gn b/mash/webtest/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d36a4382e2832f1572ef25a169d6c1ea3252b036
--- /dev/null
+++ b/mash/webtest/BUILD.gn
@@ -0,0 +1,62 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/ui.gni")
+import("//mojo/public/mojo_application.gni")
+import("//mojo/public/mojo_application_manifest.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
+import("//tools/grit/repack.gni")
+
+source_set("lib") {
+ testonly = true
+ sources = [
+ "webtest.cc",
+ "webtest.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/mus/public/cpp",
+ "//mash/public/interfaces",
+ "//mojo/converters/geometry",
+ "//mojo/public/cpp/bindings",
+ "//services/navigation/public/interfaces",
+ "//services/shell/public/cpp",
+ "//services/shell/public/interfaces",
+ "//services/tracing/public/cpp",
+ "//ui/native_theme",
+ "//ui/views",
+ "//ui/views/mus:for_mojo_application",
+ "//url",
+ ]
+
+ data_deps = [
+ "//services/navigation",
+ ]
+}
+
+mojo_native_application("webtest") {
+ testonly = true
+ sources = [
+ "main.cc",
+ ]
+
+ deps = [
+ ":lib",
+ "//services/shell/public/cpp",
+ "//ui/views/mus:for_mojo_application",
+ ]
+
+ resources = [ "$root_out_dir/views_mus_resources.pak" ]
+
+ data_deps = [
+ ":manifest",
+ "//components/mus",
+ ]
+}
+
+mojo_application_manifest("manifest") {
+ application_name = "webtest"
+ source = "manifest.json"
+}
« 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