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

Unified Diff: chrome/browser/net/traffic_annotation/BUILD.gn

Issue 2866183003: Syntax and coverage checking added to Network Traffic Annotations. (Closed)
Patch Set: Protobuf build updated. Created 3 years, 7 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 | « chrome/browser/net/chrome_network_delegate.cc ('k') | chrome/browser/net/traffic_annotation/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/traffic_annotation/BUILD.gn
diff --git a/chrome/browser/net/traffic_annotation/BUILD.gn b/chrome/browser/net/traffic_annotation/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d5fa07fe3f1fd74389cf1e81eed471027eb2c27a
--- /dev/null
+++ b/chrome/browser/net/traffic_annotation/BUILD.gn
@@ -0,0 +1,19 @@
+# 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.
+
+static_library("traffic_annotation") {
+ sources = [
+ "network_traffic_annotation_checker.cc",
+ "network_traffic_annotation_checker.h",
+ ]
+
+ deps = [
+ "//base",
+ "//net:traffic_annotation",
+ ]
+
+ if (is_debug || defined(dcheck_always_on)) {
+ deps += [ "//tools/traffic_annotation/auditor:traffic_annotation_auditor" ]
+ }
+}
« no previous file with comments | « chrome/browser/net/chrome_network_delegate.cc ('k') | chrome/browser/net/traffic_annotation/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698