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

Unified Diff: tools/traffic_annotation/BUILD.gn

Issue 2448133006: Tool added to extract network traffic annotations. (Closed)
Patch Set: Comments addressed. Created 4 years, 2 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/traffic_annotation/BUILD.gn
diff --git a/tools/traffic_annotation/BUILD.gn b/tools/traffic_annotation/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f834ebf90157c8cb1ae5612e0d8ac595ff4ef2d6
--- /dev/null
+++ b/tools/traffic_annotation/BUILD.gn
@@ -0,0 +1,29 @@
+# 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.
+
+import("//third_party/protobuf/proto_library.gni")
+
+# Works only on desktop platforms.
+assert(is_win || is_linux || is_mac)
+
+proto_library("traffic_annotation") {
+ sources = [
+ "traffic_annotation.proto",
+ ]
+}
+
+executable("traffic_annotation_auditor") {
+ sources = [
+ "traffic_annotation_auditor.cc",
+ ]
+
+ #configs += [ "//build/config:precompiled_headers" ]
+
+ deps = [
+ ":traffic_annotation",
+ "//base",
+ "//net",
+ "//third_party/protobuf:protobuf_full",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698