Index: chrome/ipc_fuzzer.gypi |
diff --git a/chrome/ipc_fuzzer.gypi b/chrome/ipc_fuzzer.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1894c12dbed1ab068bb103efb29c8796ff705b7e |
--- /dev/null |
+++ b/chrome/ipc_fuzzer.gypi |
@@ -0,0 +1,28 @@ |
+# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+{ |
+ 'conditions': [ |
+ ['OS!="ios" and enable_ipc_fuzzer==1', { |
+ 'targets': [ |
+ { |
+ 'target_name': 'ipc_fuzzer', |
+ 'type': 'static_library', |
+ 'dependencies': [ |
+ '../base/base.gyp:base', |
+ '../ipc/ipc.gyp:ipc', |
+ ], |
+ 'sources': [ |
+ 'browser/ipc_fuzzer_host.cc', |
+ 'browser/ipc_fuzzer_host.h', |
+ 'ipc_fuzzer/ipc_fuzzer_main.cc', |
+ ], |
+ 'include_dirs': [ |
+ '..', |
+ ], |
+ }, |
+ ], |
+ }], |
+ ], |
+} |