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

Unified Diff: sky/apk/rules.gni

Issue 965493002: Introduce Stocks.apk (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « sky/apk/demo/org/domokit/sky/demo/SkyDemoActivity.java ('k') | sky/apk/stocks/AndroidManifest.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/apk/rules.gni
diff --git a/sky/apk/rules.gni b/sky/apk/rules.gni
new file mode 100644
index 0000000000000000000000000000000000000000..43eb5b2fd334b3ab83e718e96cccf14f6068d659
--- /dev/null
+++ b/sky/apk/rules.gni
@@ -0,0 +1,23 @@
+# 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/android/config.gni")
+import("//build/config/android/rules.gni")
+
+template("sky_apk") {
+ android_apk(target_name) {
+ apk_name = invoker.apk_name
+ android_manifest = invoker.android_manifest
+
+ native_libs = [ "libsky_shell.so" ]
+ asset_location = "$root_build_dir/sky_shell/assets"
+
+ deps = [
+ "//base:base_java",
+ "//sky/shell:assets",
+ "//sky/shell:java",
+ "//sky/shell:sky_shell",
+ ] + invoker.deps
+ }
+}
« no previous file with comments | « sky/apk/demo/org/domokit/sky/demo/SkyDemoActivity.java ('k') | sky/apk/stocks/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698