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

Unified Diff: tools/ipc_fuzzer/message_lib/message_lib.gyp

Issue 105083002: IPC fuzzer: create message_lib library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename map_ to mapped_file_. Created 7 years 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/message_lib/message_lib.gyp
diff --git a/tools/ipc_fuzzer/replay/replay.gyp b/tools/ipc_fuzzer/message_lib/message_lib.gyp
similarity index 50%
copy from tools/ipc_fuzzer/replay/replay.gyp
copy to tools/ipc_fuzzer/message_lib/message_lib.gyp
index 6ffdd04d1c24509c5848e7bbe4c14d7687709977..fa4dcacddc34265969d2d9d970175f7c4c5b1bd3 100644
--- a/tools/ipc_fuzzer/replay/replay.gyp
+++ b/tools/ipc_fuzzer/message_lib/message_lib.gyp
@@ -1,4 +1,4 @@
-# Copyright 2013 The Chromium Authors. All rights reserved.
+# 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.
@@ -8,17 +8,23 @@
},
'targets': [
{
- 'target_name': 'ipc_fuzzer_replay',
- 'type': 'executable',
+ 'target_name': 'ipc_message_lib',
+ 'type': 'static_library',
'dependencies': [
'../../../base/base.gyp:base',
'../../../chrome/chrome.gyp:common',
'../../../ipc/ipc.gyp:ipc',
+ '../../../skia/skia.gyp:skia',
],
'sources': [
- 'replay.cc',
- 'replay_process.cc',
- 'replay_process.h',
+ 'all_messages.h',
+ 'message_cracker.h',
+ 'message_file.h',
+ 'message_file_format.h',
+ 'message_file_reader.cc',
+ 'message_file_writer.cc',
+ 'message_names.cc',
+ 'message_names.h',
],
'include_dirs': [
'../..',

Powered by Google App Engine
This is Rietveld 408576698