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

Unified Diff: tools/ipc_fuzzer/message_tools/BUILD.gn

Issue 1916493003: GN configs for ipc fuzzer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: public_configs Created 4 years, 8 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
« tools/ipc_fuzzer/BUILD.gn ('K') | « tools/ipc_fuzzer/message_replay/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/message_tools/BUILD.gn
diff --git a/tools/ipc_fuzzer/message_tools/BUILD.gn b/tools/ipc_fuzzer/message_tools/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..dad44ffd65a6c3e9b316484758bbf2ae3ef63fd4
--- /dev/null
+++ b/tools/ipc_fuzzer/message_tools/BUILD.gn
@@ -0,0 +1,25 @@
+# Copyright 2016 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.
+
+executable("ipc_message_util") {
+ configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_tool_config" ]
+ deps = [
+ "//third_party/re2",
+ "//tools/ipc_fuzzer/message_lib:ipc_message_lib",
+ ]
+ sources = [
+ "message_util.cc",
+ ]
+}
+
+executable("ipc_message_list") {
+ configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_tool_config" ]
+ deps = [
+ "//chrome/common/safe_browsing:proto",
+ "//tools/ipc_fuzzer/message_lib:ipc_message_lib",
+ ]
+ sources = [
+ "message_list.cc",
+ ]
+}
« tools/ipc_fuzzer/BUILD.gn ('K') | « tools/ipc_fuzzer/message_replay/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698