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

Unified Diff: chromecast/graphics/BUILD.gn

Issue 2643553002: [Chromecast] Reuse the Aura window manager across receiver apps. (Closed)
Patch Set: applied reviewer feedback Created 3 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
« no previous file with comments | « chromecast/browser/test/cast_browser_test.cc ('k') | chromecast/graphics/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/graphics/BUILD.gn
diff --git a/chromecast/graphics/BUILD.gn b/chromecast/graphics/BUILD.gn
index 435b1a02910fb5a369cbba5e7e7b9a42441cfa90..8fd33dec9203adfcc394098c7b62ea87ee276afc 100644
--- a/chromecast/graphics/BUILD.gn
+++ b/chromecast/graphics/BUILD.gn
@@ -9,12 +9,28 @@ source_set("graphics") {
sources = [
"cast_vsync_settings.cc",
"cast_vsync_settings.h",
+ "cast_window_manager.h",
]
deps = [
"//base",
+ "//ui/gfx",
]
+ if (use_aura && !is_cast_audio_only) {
+ sources += [
+ "cast_window_manager_aura.cc",
+ "cast_window_manager_aura.h",
+ ]
+
+ deps += [ "//ui/base/ime" ]
+ } else {
+ sources += [
+ "cast_window_manager_default.cc",
+ "cast_window_manager_default.h",
+ ]
+ }
+
if (use_aura) {
sources += [
"cast_screen.cc",
@@ -26,7 +42,6 @@ source_set("graphics") {
"//chromecast/public",
"//ui/aura",
"//ui/display",
- "//ui/gfx",
"//ui/gfx/geometry",
]
}
« no previous file with comments | « chromecast/browser/test/cast_browser_test.cc ('k') | chromecast/graphics/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698