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

Unified Diff: net/BUILD.gn

Issue 1838443002: Provide GN support for cachetool and content_decoder_tool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index b6390a790dfc6d9bdacd02816dccb43ff0690692..b43ba391c673952699ea613ddbadfd1fa6c023af 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1076,6 +1076,33 @@ if (!is_ios && !is_android) {
}
if (is_linux) {
+ executable("cachetool") {
+ testonly = true
+ sources = [
+ "tools/cachetool/cachetool.cc",
+ ]
+ deps = [
+ ":net",
+ ":test_support",
+ "//base",
+ ]
+ }
+
+ executable("content_decoder_tool") {
+ testonly = true
+ sources = [
+ "filter/mock_filter_context.cc",
+ "filter/mock_filter_context.h",
+ "tools/content_decoder_tool/content_decoder_tool.cc",
+ ]
+ deps = [
+ ":net",
+ ":test_support",
+ "//base",
+ "//url",
+ ]
+ }
+
static_library("epoll_server") {
sources = [
"tools/epoll_server/epoll_server.cc",
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698