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

Unified Diff: win8/BUILD.gn

Issue 875123003: Disable chrome target and tests on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disable ash targets that need test_registrar Created 5 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 | « chrome_elf/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/BUILD.gn
diff --git a/win8/BUILD.gn b/win8/BUILD.gn
index 84d7972f62e095703610840911fd6e4d9bd22970..ba2033c037967f4929aeb1bbbd778925b2e77abe 100644
--- a/win8/BUILD.gn
+++ b/win8/BUILD.gn
@@ -51,21 +51,25 @@ source_set("test_registrar_constants") {
]
}
-executable("test_registrar") {
- deps = [
- "//base",
+# TODO(brettw) enable on Windows. This should link but is disabled due to bot
+# capacity issues.
+if (!is_win) {
+ executable("test_registrar") {
+ deps = [
+ "//base",
- # Chrome is the default viewer process currently used by the tests.
- # TODO(robertshield): Investigate building a standalone metro viewer
- # process.
- "//chrome",
- ":test_registrar_constants",
- ]
- sources = [
- "test/test_registrar.cc",
- "test/test_registrar.rc",
- "test/test_registrar.rgs",
- "test/test_registrar_resource.h",
- ]
- configs += [ "//build/config/win:windowed" ]
+ # Chrome is the default viewer process currently used by the tests.
+ # TODO(robertshield): Investigate building a standalone metro viewer
+ # process.
+ "//chrome",
+ ":test_registrar_constants",
+ ]
+ sources = [
+ "test/test_registrar.cc",
+ "test/test_registrar.rc",
+ "test/test_registrar.rgs",
+ "test/test_registrar_resource.h",
+ ]
+ configs += [ "//build/config/win:windowed" ]
+ }
}
« no previous file with comments | « chrome_elf/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698