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

Unified Diff: build/common.gypi

Issue 18254010: IPC fuzzer child process component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: no windows support Created 7 years, 4 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/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index e70eaac88a8a245c7db3a48ac6d5494f4c0dd66a..36d89ae3876beab9cc26a487fee55554f3af8acb 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -777,6 +777,9 @@
'google_api_key%': '',
'google_default_client_id%': '',
'google_default_client_secret%': '',
+
+ # IPC fuzzer is disabled by default.
+ 'enable_ipc_fuzzer%': 0,
},
# Copy conditionally-set variables out one scope.
@@ -1141,6 +1144,8 @@
# Use the chromium skia by default.
'use_system_skia%': '0',
+ 'enable_ipc_fuzzer%': '<(enable_ipc_fuzzer)',
+
'conditions': [
# The version of GCC in use, set later in platforms that use GCC and have
# not explicitly chosen to build with clang. Currently, this means all
@@ -2313,7 +2318,10 @@
}],
['enable_mdns==1', {
'defines': ['ENABLE_MDNS=1'],
- }]
+ }],
+ ['enable_ipc_fuzzer==1', {
+ 'defines': ['ENABLE_IPC_FUZZER=1'],
+ }],
], # conditions for 'target_defaults'
'target_conditions': [
['enable_wexit_time_destructors==1', {

Powered by Google App Engine
This is Rietveld 408576698