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

Unified Diff: tools/ipc_fuzzer/BUILD.gn

Issue 1927303002: Conditionally set enable_ipc_fuzzer for GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clang only Created 4 years, 8 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 | « no previous file | tools/ipc_fuzzer/ipc_fuzzer.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/BUILD.gn
diff --git a/tools/ipc_fuzzer/BUILD.gn b/tools/ipc_fuzzer/BUILD.gn
index 2a72653644b67951b1b5d454381e0ca6c6f68761..50bbfe2fa08b962e0df3cc32580b170bd5e363ae 100644
--- a/tools/ipc_fuzzer/BUILD.gn
+++ b/tools/ipc_fuzzer/BUILD.gn
@@ -16,7 +16,7 @@ config("ipc_fuzzer_tool_config") {
include_dirs = [ "." ]
}
-if (enable_ipc_fuzzer && (is_linux || is_mac || is_win)) {
+if (enable_ipc_fuzzer) {
assert(!is_component_build, "IPC fuzzer does not support component builds.")
group("ipc_fuzzer_all") {
« no previous file with comments | « no previous file | tools/ipc_fuzzer/ipc_fuzzer.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698