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

Unified Diff: chrome_elf/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/test/BUILD.gn ('k') | win8/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_elf/BUILD.gn
diff --git a/chrome_elf/BUILD.gn b/chrome_elf/BUILD.gn
index b58c82918a0ecdff4a4a4fc5beae1d25562adcb3..b15a7920c86d2b8103c067abaa82e7d944afc4d0 100644
--- a/chrome_elf/BUILD.gn
+++ b/chrome_elf/BUILD.gn
@@ -140,33 +140,37 @@ static_library("blacklist") {
]
}
-test("chrome_elf_unittests") {
- output_name = "chrome_elf_unittests"
- sources = [
- "blacklist/test/blacklist_test.cc",
- "chrome_elf_util_unittest.cc",
- "create_file/chrome_create_file_unittest.cc",
- "elf_imports_unittest.cc",
- "ntdll_cache_unittest.cc",
- ]
- include_dirs = [ "$target_gen_dir" ]
- deps = [
- ":blacklist",
- ":blacklist_test_main_dll",
- ":lib",
- "//base",
- "//base/test:run_all_unittests",
- "//base/test:test_support",
- "//sandbox",
- "//testing/gtest",
- ]
- data_deps = [
- ":blacklist_test_dll_1",
- ":blacklist_test_dll_2",
- ":blacklist_test_dll_3",
- ":chrome_elf",
- "//chrome",
- ]
+# TODO(brettw) enable on Windows. This should link but is disabled due to bot
+# capacity issues.
+if (!is_win) {
+ test("chrome_elf_unittests") {
+ output_name = "chrome_elf_unittests"
+ sources = [
+ "blacklist/test/blacklist_test.cc",
+ "chrome_elf_util_unittest.cc",
+ "create_file/chrome_create_file_unittest.cc",
+ "elf_imports_unittest.cc",
+ "ntdll_cache_unittest.cc",
+ ]
+ include_dirs = [ "$target_gen_dir" ]
+ deps = [
+ ":blacklist",
+ ":blacklist_test_main_dll",
+ ":lib",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//sandbox",
+ "//testing/gtest",
+ ]
+ data_deps = [
+ ":blacklist_test_dll_1",
+ ":blacklist_test_dll_2",
+ ":blacklist_test_dll_3",
+ ":chrome_elf",
+ "//chrome",
+ ]
+ }
}
shared_library("blacklist_test_main_dll") {
« no previous file with comments | « chrome/test/BUILD.gn ('k') | win8/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698