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

Unified Diff: mash/shell/BUILD.gn

Issue 1492563002: Introduce mash/shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years 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
Index: mash/shell/BUILD.gn
diff --git a/mash/shell/BUILD.gn b/mash/shell/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d1ef272e4bbad233e766ece63b14575b45a7f7e5
--- /dev/null
+++ b/mash/shell/BUILD.gn
@@ -0,0 +1,30 @@
+# Copyright 2015 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/tools/bindings/mojom.gni")
+import("//tools/grit/repack.gni")
+
+mojo_native_application("shell") {
+ output_name = "mash_shell"
+
+ sources = [
+ "main.cc",
+ "shell_application_delegate.cc",
+ "shell_application_delegate.h",
+ ]
+
+ deps = [
+ "//base",
+ "//mojo/application/public/cpp",
+ "//mojo/application/public/cpp:sources",
+ "//mojo/public/cpp/bindings",
+ ]
+
+ data_deps = [
+ "//mash/system_ui",
+ "//mash/wm",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698