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

Unified Diff: blimp/client/BUILD.gn

Issue 1528243002: Add a basic linux client for Blimp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: X11, how does it work? 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') | blimp/client/DEPS » ('J')
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..b6abccccbdc2fb8e978d3ae93a04be19326193f1 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) {
+ executable("blimp_shell") {
haibinlu 2015/12/17 00:32:58 blimp_client_shell?
nyquist 2015/12/17 03:00:21 Good question. I guess currently it follows 'conte
Wez 2016/01/05 19:15:01 No, the client+engine are equivalent to content_sh
+ 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",
nyquist 2015/12/17 03:00:21 Optional nit: Could this follow the same style as
Wez 2016/01/05 19:15:01 I think we can just run the gn formatter over this
+ ]
+ }
+}
+
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') | blimp/client/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698