mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This CL renames SkyShell.apk to SkyDemo.apk and adds a Stocks.apk which defaults to the stocks demo app. Sky Shell is now a library that can be packaged by different APKs. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/965493002
24 lines
666 B
Plaintext
24 lines
666 B
Plaintext
# 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
|
|
}
|
|
}
|