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

Unified Diff: sky/shell/BUILD.gn

Issue 1139873004: Make android directory for Android-specific bits of SkyShell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sky/shell/android/library_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/shell/BUILD.gn
diff --git a/sky/shell/BUILD.gn b/sky/shell/BUILD.gn
index c25f5dbdd70d95d3467c8d4e82d3e7be9204aa69..1e087ddde7932087839db6aeb2fb15d2de453e2b 100644
--- a/sky/shell/BUILD.gn
+++ b/sky/shell/BUILD.gn
@@ -9,16 +9,25 @@ import("//build/config/android/rules.gni")
generate_jni("jni_headers") {
sources = [
- "org/domokit/sky/shell/JavaServiceProvider.java",
- "org/domokit/sky/shell/PlatformView.java",
- "org/domokit/sky/shell/SkyMain.java",
- "org/domokit/sky/shell/TracingController.java",
+ "android/org/domokit/sky/shell/PlatformServiceProvider.java",
+ "android/org/domokit/sky/shell/PlatformView.java",
+ "android/org/domokit/sky/shell/SkyMain.java",
+ "android/org/domokit/sky/shell/TracingController.java",
]
jni_package = "sky/shell"
}
shared_library("sky_shell") {
sources = [
+ "android/library_loader.cc",
+ "android/platform_service_provider.cc",
+ "android/platform_service_provider.h",
+ "android/platform_view.cc",
+ "android/platform_view.h",
+ "android/sky_main.cc",
+ "android/sky_main.h",
+ "android/tracing_controller.cc",
+ "android/tracing_controller.h",
"gpu/ganesh_context.cc",
"gpu/ganesh_context.h",
"gpu/ganesh_surface.cc",
@@ -27,17 +36,9 @@ shared_library("sky_shell") {
"gpu/rasterizer.h",
"gpu_delegate.cc",
"gpu_delegate.h",
- "java_service_provider.cc",
- "java_service_provider.h",
- "library_loader.cc",
- "platform_view.cc",
- "platform_view.h",
+ "service_provider.h",
"shell.cc",
"shell.h",
- "sky_main.cc",
- "sky_main.h",
- "tracing_controller.cc",
- "tracing_controller.h",
"ui/animator.cc",
"ui/animator.h",
"ui/engine.cc",
@@ -75,15 +76,15 @@ shared_library("sky_shell") {
android_library("java") {
java_files = [
- "org/domokit/sky/shell/GestureProvider.java",
- "org/domokit/sky/shell/JavaServiceProvider.java",
- "org/domokit/sky/shell/PlatformView.java",
- "org/domokit/sky/shell/ServiceFactory.java",
- "org/domokit/sky/shell/ServiceRegistry.java",
- "org/domokit/sky/shell/SkyActivity.java",
- "org/domokit/sky/shell/SkyApplication.java",
- "org/domokit/sky/shell/SkyMain.java",
- "org/domokit/sky/shell/TracingController.java",
+ "android/org/domokit/sky/shell/GestureProvider.java",
+ "android/org/domokit/sky/shell/PlatformServiceProvider.java",
+ "android/org/domokit/sky/shell/PlatformView.java",
+ "android/org/domokit/sky/shell/ServiceFactory.java",
+ "android/org/domokit/sky/shell/ServiceRegistry.java",
+ "android/org/domokit/sky/shell/SkyActivity.java",
+ "android/org/domokit/sky/shell/SkyApplication.java",
+ "android/org/domokit/sky/shell/SkyMain.java",
+ "android/org/domokit/sky/shell/TracingController.java",
]
deps = [
« no previous file with comments | « no previous file | sky/shell/android/library_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698