Index: build/config/features.gni |
diff --git a/build/config/features.gni b/build/config/features.gni |
index 72a5b5e576a95ed86d134ca627f72d14c215ad0e..acf9a63a3b2a3457152e0e60f6f683663475a98a 100644 |
--- a/build/config/features.gni |
+++ b/build/config/features.gni |
@@ -116,6 +116,9 @@ declare_args() { |
# Enable printing with print preview. It does not imply |
# enable_basic_printing. It's possible to build Chrome with preview only. |
enable_print_preview = !is_android && !is_chromecast && !is_ios |
+ |
+ # Don't build IPC fuzzer by default. |
Nico
2016/04/22 21:17:53
can you remind me again why this is off by default
Oliver Chang
2016/04/22 21:30:32
It changes some behaviour (based on the ENABLE_IPC
|
+ enable_ipc_fuzzer = false |
Dirk Pranke
2016/04/22 23:18:11
In GN we don't want to add arguments globally if t
Oliver Chang
2016/04/25 18:16:06
OK, done. I'm a little concerned about header file
Dirk Pranke
2016/04/25 18:48:58
If the defines are needed in public headers (i.e.,
Oliver Chang
2016/04/25 19:25:50
Thanks, I've changed ipc/BUILD.gn to use public_co
|
} |
# Additional dependent variables ----------------------------------------------- |