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

Unified Diff: mandoline/BUILD.gn

Issue 1163523006: Revert of Mandoline filesystem: Enable windows build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « components/filesystem/util.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/BUILD.gn
diff --git a/mandoline/BUILD.gn b/mandoline/BUILD.gn
index 2bcd2e6ed1dcc08cab35b08131a6d463361940bc..db023aa01b41191aed7a786fe85203deda032c4a 100644
--- a/mandoline/BUILD.gn
+++ b/mandoline/BUILD.gn
@@ -11,10 +11,11 @@
]
if (!is_component_build) {
- deps += [
- "//mandoline/app",
- "//components/filesystem",
- ]
+ deps += [ "//mandoline/app" ]
+
+ if (!is_win) {
+ deps += [ "//components/filesystem" ]
+ }
}
}
@@ -28,12 +29,15 @@
if (!is_component_build && !is_mac) {
deps += [
"//components/clipboard:apptests",
- "//components/filesystem:apptests",
"//components/html_viewer:apptests",
"//components/html_viewer:tests",
"//components/resource_provider:apptests",
"//components/resource_provider:tests",
"//components/view_manager:tests",
]
+
+ if (!is_win) {
+ deps += [ "//components/filesystem:apptests" ]
+ }
}
}
« no previous file with comments | « components/filesystem/util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698