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

Unified Diff: tools/ipc_fuzzer/ipc_fuzzer.gyp

Issue 18254010: IPC fuzzer child process component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed comments Created 7 years, 3 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: tools/ipc_fuzzer/ipc_fuzzer.gyp
diff --git a/tools/ipc_fuzzer/ipc_fuzzer.gyp b/tools/ipc_fuzzer/ipc_fuzzer.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..313ce3b677a304a49a5624b32a95e0e34949b1d5
--- /dev/null
+++ b/tools/ipc_fuzzer/ipc_fuzzer.gyp
@@ -0,0 +1,27 @@
+# Copyright (c) 2013 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.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'ipc_fuzzer',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../ipc/ipc.gyp:ipc',
+ '../../chrome/chrome.gyp:common',
+ ],
+ 'sources': [
+ 'ipc_fuzzer_main.cc',
+ ],
+ 'include_dirs': [
+ '../..',
+ ],
+ },
+ ],
+}
+

Powered by Google App Engine
This is Rietveld 408576698