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

Unified Diff: sky/shell/BUILD.gn

Issue 1202323002: Port sky_shell to Linux for testing (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | « sky/BUILD.gn ('k') | sky/shell/gpu/rasterizer.h » ('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 0299d77428137c4cc2613c04b2f4f789eb1c619f..b28c8f8bdfe0efdb13868802a601a6cde36c6174 100644
--- a/sky/shell/BUILD.gn
+++ b/sky/shell/BUILD.gn
@@ -37,6 +37,7 @@ source_set("common") {
"gpu_delegate.h",
"platform_view.cc",
"platform_view.h",
+ "service_provider.cc",
"service_provider.h",
"shell.cc",
"shell.h",
@@ -169,6 +170,18 @@ if (is_android) {
":sky_resources",
]
}
+} else if (is_linux) {
+ executable("shell") {
+ output_name = "sky_shell"
+
+ sources = [
+ "linux/main.cc",
+ "linux/platform_service_provider_linux.cc",
+ "linux/platform_view_linux.cc",
+ ]
+
+ deps = common_deps + [ ":common" ]
+ }
} else {
assert(false, "Unsupported platform")
}
« no previous file with comments | « sky/BUILD.gn ('k') | sky/shell/gpu/rasterizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698