Chromium Code Reviews| Index: build/common.gypi |
| diff --git a/build/common.gypi b/build/common.gypi |
| index 97e8596bd021e114af6db6b25e4439b7ddb5c89b..fb2f99547ce76cb59d686bc38fb34309a93bb153 100644 |
| --- a/build/common.gypi |
| +++ b/build/common.gypi |
| @@ -843,6 +843,9 @@ |
| 'google_api_key%': '', |
| 'google_default_client_id%': '', |
| 'google_default_client_secret%': '', |
| + |
| + # IPC fuzzer is disabled by default. |
| + 'enable_ipc_fuzzer%': 0, |
|
jochen (gone - plz use gerrit)
2013/11/27 09:19:49
you don't need to duplicate this here, it's enough
aedla
2013/11/27 19:24:51
Done.
|
| }, |
| # Copy conditionally-set variables out one scope. |
| @@ -1217,6 +1220,8 @@ |
| # Relative path to icu.gyp from this file. |
| 'icu_gyp_path': '../third_party/icu/icu.gyp', |
| + '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 |
| @@ -2399,7 +2404,10 @@ |
| }], |
| ['enable_enhanced_bookmarks==1', { |
| 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'], |
| - }] |
| + }], |
| + ['enable_ipc_fuzzer==1', { |
| + 'defines': ['ENABLE_IPC_FUZZER=1'], |
| + }], |
| ], # conditions for 'target_defaults' |
| 'target_conditions': [ |
| ['enable_wexit_time_destructors==1', { |