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

Side by Side Diff: sky/shell/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 9
10 generate_jni("jni_headers") { 10 generate_jni("jni_headers") {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "//ui/gl", 68 "//ui/gl",
69 ":jni_headers", 69 ":jni_headers",
70 ] 70 ]
71 } 71 }
72 72
73 android_library("java") { 73 android_library("java") {
74 java_files = [ 74 java_files = [
75 "org/domokit/sky/shell/GestureProvider.java", 75 "org/domokit/sky/shell/GestureProvider.java",
76 "org/domokit/sky/shell/JavaServiceProvider.java", 76 "org/domokit/sky/shell/JavaServiceProvider.java",
77 "org/domokit/sky/shell/PlatformView.java", 77 "org/domokit/sky/shell/PlatformView.java",
78 "org/domokit/sky/shell/ServiceFactory.java",
79 "org/domokit/sky/shell/ServiceRegistry.java",
78 "org/domokit/sky/shell/SkyActivity.java", 80 "org/domokit/sky/shell/SkyActivity.java",
79 "org/domokit/sky/shell/SkyApplication.java", 81 "org/domokit/sky/shell/SkyApplication.java",
80 "org/domokit/sky/shell/SkyMain.java", 82 "org/domokit/sky/shell/SkyMain.java",
81 ] 83 ]
82 84
83 deps = [ 85 deps = [
84 "//base:base_java", 86 "//base:base_java",
85 "//mojo/android:system_java", 87 "//mojo/android:system_java",
86 "//mojo/public/interfaces/application:application_java", 88 "//mojo/public/interfaces/application:application_java",
87 "//mojo/public/java:bindings", 89 "//mojo/public/java:bindings",
88 "//mojo/public/java:system", 90 "//mojo/public/java:system",
89 "//mojo/services/network/public/interfaces:interfaces_java", 91 "//mojo/services/network/public/interfaces:interfaces_java",
90 "//sky/services/oknet", 92 "//sky/services/oknet",
91 "//sky/services/sensors",
92 "//sky/services/sensors:interfaces_java",
93 "//sky/services/viewport:viewport_java", 93 "//sky/services/viewport:viewport_java",
94 ] 94 ]
95 } 95 }
96 96
97 copy_ex("assets") { 97 copy_ex("assets") {
98 clear_dir = true 98 clear_dir = true
99 dest = "$root_build_dir/sky_shell/assets" 99 dest = "$root_build_dir/sky_shell/assets"
100 sources = [ 100 sources = [
101 "$root_build_dir/icudtl.dat", 101 "$root_build_dir/icudtl.dat",
102 ] 102 ]
103 deps = [ 103 deps = [
104 "//third_party/icu", 104 "//third_party/icu",
105 ] 105 ]
106 } 106 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698