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

Unified Diff: mandoline/BUILD.gn

Issue 1166763002: Reland "Mandoline filesystem: Build the filesystem on windows." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DWORD -> INT for real checking. (This was wrong.) 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 db023aa01b41191aed7a786fe85203deda032c4a..2bcd2e6ed1dcc08cab35b08131a6d463361940bc 100644
--- a/mandoline/BUILD.gn
+++ b/mandoline/BUILD.gn
@@ -11,11 +11,10 @@ group("all") {
]
if (!is_component_build) {
- deps += [ "//mandoline/app" ]
-
- if (!is_win) {
- deps += [ "//components/filesystem" ]
- }
+ deps += [
+ "//mandoline/app",
+ "//components/filesystem",
+ ]
}
}
@@ -29,15 +28,12 @@ group("tests") {
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