OLD | NEW |
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "//sky/services/platform", | 65 "//sky/services/platform", |
66 "//sky/services/viewport", | 66 "//sky/services/viewport", |
67 "//ui/gfx/geometry", | 67 "//ui/gfx/geometry", |
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/JavaServiceProvider.java", | 76 "org/domokit/sky/shell/JavaServiceProvider.java", |
76 "org/domokit/sky/shell/PlatformView.java", | 77 "org/domokit/sky/shell/PlatformView.java", |
77 "org/domokit/sky/shell/SkyMain.java", | |
78 "org/domokit/sky/shell/SkyActivity.java", | 78 "org/domokit/sky/shell/SkyActivity.java", |
79 "org/domokit/sky/shell/SkyApplication.java", | 79 "org/domokit/sky/shell/SkyApplication.java", |
| 80 "org/domokit/sky/shell/SkyMain.java", |
80 ] | 81 ] |
81 | 82 |
82 deps = [ | 83 deps = [ |
83 "//base:base_java", | 84 "//base:base_java", |
84 "//mojo/android:system_java", | 85 "//mojo/android:system_java", |
85 "//mojo/public/interfaces/application:application_java", | 86 "//mojo/public/interfaces/application:application_java", |
86 "//mojo/public/java:bindings", | 87 "//mojo/public/java:bindings", |
87 "//mojo/public/java:system", | 88 "//mojo/public/java:system", |
88 "//mojo/services/network/public/interfaces:interfaces_java", | 89 "//mojo/services/network/public/interfaces:interfaces_java", |
89 "//sky/services/oknet", | 90 "//sky/services/oknet", |
90 "//sky/services/sensors", | 91 "//sky/services/sensors", |
91 "//sky/services/sensors:interfaces_java", | 92 "//sky/services/sensors:interfaces_java", |
92 "//sky/services/viewport:viewport_java", | 93 "//sky/services/viewport:viewport_java", |
93 ] | 94 ] |
94 } | 95 } |
95 | 96 |
96 copy_ex("assets") { | 97 copy_ex("assets") { |
97 clear_dir = true | 98 clear_dir = true |
98 dest = "$root_build_dir/sky_shell/assets" | 99 dest = "$root_build_dir/sky_shell/assets" |
99 sources = [ | 100 sources = [ |
100 "$root_build_dir/icudtl.dat", | 101 "$root_build_dir/icudtl.dat", |
101 ] | 102 ] |
102 deps = [ | 103 deps = [ |
103 "//third_party/icu", | 104 "//third_party/icu", |
104 ] | 105 ] |
105 } | 106 } |
OLD | NEW |