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

Unified Diff: sky/shell/BUILD.gn

Issue 890803004: SkyShell should be able to draw a green square with GL (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
Index: sky/shell/BUILD.gn
diff --git a/sky/shell/BUILD.gn b/sky/shell/BUILD.gn
index 624472d4b2d3d297d6685929f1ccc6de19166b6b..80c894f3f3e858c7f69d6e6866d1092344283729 100644
--- a/sky/shell/BUILD.gn
+++ b/sky/shell/BUILD.gn
@@ -16,17 +16,26 @@ group("shell") {
generate_jni("jni_headers") {
sources = [
"apk/src/org/domokit/sky/shell/SkyMain.java",
+ "apk/src/org/domokit/sky/shell/SkyView.java",
]
jni_package = "sky/shell"
}
shared_library("sky_shell") {
sources = [
+ "gpu_driver.cc",
+ "gpu_driver.h",
"library_loader.cc",
+ "shell.cc",
+ "shell.h",
"sky_main.cc",
"sky_main.h",
+ "sky_view.cc",
+ "sky_view.h",
]
+ configs += [ "//third_party/khronos:khronos_headers" ]
+
deps = [
"//base",
"//build/config/sanitizers:deps",
@@ -40,6 +49,7 @@ android_library("java") {
"apk/src/org/domokit/sky/shell/SkyMain.java",
"apk/src/org/domokit/sky/shell/SkyShellActivity.java",
"apk/src/org/domokit/sky/shell/SkyShellApplication.java",
+ "apk/src/org/domokit/sky/shell/SkyView.java",
]
deps = [

Powered by Google App Engine
This is Rietveld 408576698