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

Unified Diff: build/config/BUILD.gn

Issue 1916493003: GN configs for ipc fuzzer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reword doc + rebase 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
Index: build/config/BUILD.gn
diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn
index cb9cfa1145e2f335a360856fe3d2f57302497b44..d12bca33e33bba4128573b33d21ce2a7e74c810e 100644
--- a/build/config/BUILD.gn
+++ b/build/config/BUILD.gn
@@ -261,6 +261,10 @@ config("feature_flags") {
if (!fieldtrial_testing_like_official_build && !is_chrome_branded) {
defines += [ "FIELDTRIAL_TESTING_ENABLED" ]
}
+ if (enable_ipc_fuzzer) {
+ assert(!is_component_build, "IPC fuzzer does not support component builds.")
+ defines += [ "ENABLE_IPC_FUZZER" ]
+ }
}
# Debug/release ----------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698