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 common_deps = [ | 5 common_deps = [ |
6 "//base", | 6 "//base", |
7 "//base:i18n", | 7 "//base:i18n", |
8 "//build/config/sanitizers:deps", | 8 "//build/config/sanitizers:deps", |
9 "//dart/runtime:libdart", | 9 "//dart/runtime:libdart", |
10 "//mojo/common", | 10 "//mojo/common", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 ":jni_headers", | 93 ":jni_headers", |
94 ":common", | 94 ":common", |
95 ] | 95 ] |
96 } | 96 } |
97 | 97 |
98 android_library("java") { | 98 android_library("java") { |
99 java_files = [ | 99 java_files = [ |
100 "android/org/domokit/sky/shell/GestureProvider.java", | 100 "android/org/domokit/sky/shell/GestureProvider.java", |
101 "android/org/domokit/sky/shell/PlatformServiceProvider.java", | 101 "android/org/domokit/sky/shell/PlatformServiceProvider.java", |
102 "android/org/domokit/sky/shell/PlatformViewAndroid.java", | 102 "android/org/domokit/sky/shell/PlatformViewAndroid.java", |
| 103 "android/org/domokit/sky/shell/ResourceExtractor.java", |
103 "android/org/domokit/sky/shell/ServiceFactory.java", | 104 "android/org/domokit/sky/shell/ServiceFactory.java", |
104 "android/org/domokit/sky/shell/ServiceRegistry.java", | 105 "android/org/domokit/sky/shell/ServiceRegistry.java", |
105 "android/org/domokit/sky/shell/SkyActivity.java", | 106 "android/org/domokit/sky/shell/SkyActivity.java", |
106 "android/org/domokit/sky/shell/SkyApplication.java", | 107 "android/org/domokit/sky/shell/SkyApplication.java", |
107 "android/org/domokit/sky/shell/SkyMain.java", | 108 "android/org/domokit/sky/shell/SkyMain.java", |
108 "android/org/domokit/sky/shell/TracingController.java", | 109 "android/org/domokit/sky/shell/TracingController.java", |
109 ] | 110 ] |
110 | 111 |
111 deps = [ | 112 deps = [ |
112 "//base:base_java", | 113 "//base:base_java", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 ] | 187 ] |
187 | 188 |
188 deps = common_deps + [ | 189 deps = common_deps + [ |
189 ":common", | 190 ":common", |
190 "//sky/services/testing", | 191 "//sky/services/testing", |
191 ] | 192 ] |
192 } | 193 } |
193 } else { | 194 } else { |
194 assert(false, "Unsupported platform") | 195 assert(false, "Unsupported platform") |
195 } | 196 } |
OLD | NEW |