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

Unified Diff: blimp/client/BUILD.gn

Issue 1551683002: [Blimp Client] Land CL 1528243002 (Add a basic linux client for Blimp) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « blimp/BUILD.gn ('k') | blimp/client/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/BUILD.gn
diff --git a/blimp/client/BUILD.gn b/blimp/client/BUILD.gn
index 3858bd3e9ee035a82a175afd2b13eb89f341007b..b7388ac281afda0818dc69b51575e3359ca429a9 100644
--- a/blimp/client/BUILD.gn
+++ b/blimp/client/BUILD.gn
@@ -10,6 +10,8 @@ if (is_android) {
component("blimp_client") {
sources = [
"blimp_client_export.h",
+ "blimp_startup.cc",
+ "blimp_startup.h",
"compositor/blimp_compositor.cc",
"compositor/blimp_compositor.h",
"compositor/blimp_context_provider.cc",
@@ -83,6 +85,30 @@ source_set("unit_tests") {
]
}
+if (is_linux && !is_chromeos) {
+ executable("blimp_shell") {
+ sources = [
+ "linux/blimp_display_manager.cc",
+ "linux/blimp_display_manager.h",
+ "linux/blimp_main.cc",
+ "session/blimp_client_session_linux.cc",
+ "session/blimp_client_session_linux.h",
+ ]
+
+ deps = [
+ ":blimp_client",
+ "//base",
+ "//ui/events/platform/x11",
+ "//ui/platform_window/x11",
+ ]
+
+ public_configs = [ "//build/config/linux:x11" ]
+ public_deps = [
+ "//ui/events/platform/x11",
+ ]
+ }
+}
+
if (is_android) {
manifest_package = "org.chromium.blimp"
blimp_apk_manifest = "$target_gen_dir/blimp_apk_manifest/AndroidManifest.xml"
« no previous file with comments | « blimp/BUILD.gn ('k') | blimp/client/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698