OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 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 assert(is_android) | |
6 | |
7 import("//build/config/android/config.gni") | |
8 import("//build/config/android/rules.gni") | |
9 import("//sky/apk/rules.gni") | |
10 | |
11 android_library("java") { | |
12 java_files = [ "org/domokit/stocks/StocksActivity.java" ] | |
13 | |
14 deps = [ | |
15 "//sky/shell:java", | |
16 ] | |
17 } | |
18 | |
19 sky_apk("stocks") { | |
20 apk_name = "Stocks" | |
21 android_manifest = "AndroidManifest.xml" | |
22 deps = [ | |
23 ":java", | |
24 ] | |
25 } | |
OLD | NEW |