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

Side by Side Diff: sky/apk/demo/BUILD.gn

Issue 969753003: Make it possible for SkyShell embedders to register services (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 assert(is_android) 5 assert(is_android)
6 6
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 import("//sky/apk/rules.gni") 9 import("//sky/apk/rules.gni")
10 10
11 android_library("java") { 11 android_library("java") {
12 java_files = [ "org/domokit/sky/demo/SkyDemoActivity.java" ] 12 java_files = [
13 "org/domokit/sky/demo/SkyDemoActivity.java",
14 "org/domokit/sky/demo/SkyDemoApplication.java",
15 ]
13 16
14 deps = [ 17 deps = [
18 "//base:base_java",
19 "//mojo/public/java:bindings",
20 "//mojo/public/java:system",
21 "//sky/services/sensors",
22 "//sky/services/sensors:interfaces_java",
15 "//sky/shell:java", 23 "//sky/shell:java",
16 ] 24 ]
17 } 25 }
18 26
19 sky_apk("demo") { 27 sky_apk("demo") {
20 apk_name = "SkyDemo" 28 apk_name = "SkyDemo"
21 android_manifest = "AndroidManifest.xml" 29 android_manifest = "AndroidManifest.xml"
22 deps = [ 30 deps = [
23 ":java", 31 ":java",
24 ] 32 ]
25 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698