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

Unified Diff: content/browser/BUILD.gn

Issue 335973002: Minor Fixes for Windows GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | « BUILD.gn ('k') | content/ppapi_plugin/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/BUILD.gn
diff --git a/content/browser/BUILD.gn b/content/browser/BUILD.gn
index 31eccc43b6ebc88727ea0ffeb5ed742229b72cee..976338cf9cfd26c65821aa39e963234a8f6d073b 100644
--- a/content/browser/BUILD.gn
+++ b/content/browser/BUILD.gn
@@ -245,7 +245,10 @@ source_set("browser") {
if (use_x11) {
configs += [ "//build/config/linux:x11" ]
} else {
- sources -= [ "renderer_host/web_input_event_aurax11.cc" ]
+ sources -= [
+ "power_save_blocker_x11.cc",
+ "renderer_host/web_input_event_aurax11.cc",
+ ]
}
if (use_pango) {
@@ -339,6 +342,12 @@ source_set("browser") {
sources += rebase_path(
content_browser_gypi_values.compositor_browser_sources,
".", "//content")
+ if (!use_x11) {
+ sources -= [
+ "compositor/software_output_device_x11.cc",
+ "compositor/software_output_device_x11.h",
+ ]
+ }
deps += [ "//ui/compositor" ]
}
« no previous file with comments | « BUILD.gn ('k') | content/ppapi_plugin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698