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

Unified Diff: chrome/ipc_fuzzer.gypi

Issue 18254010: IPC fuzzer child process component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unnecessary include Created 7 years, 5 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: 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': [
+ '..',
+ ],
+ },
+ ],
+ }],
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698