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

Unified Diff: components/packed_ct_ev_whitelist/BUILD.gn

Issue 811353002: Move CT EV white list packaging API from chrome/ to components/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed missed nit Created 5 years, 11 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 | « components/packed_ct_ev_whitelist.gypi ('k') | components/packed_ct_ev_whitelist/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/packed_ct_ev_whitelist/BUILD.gn
diff --git a/components/packed_ct_ev_whitelist/BUILD.gn b/components/packed_ct_ev_whitelist/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..ae9561ea1aa2e9254c6dd76ba9c9748a802d68f6
--- /dev/null
+++ b/components/packed_ct_ev_whitelist/BUILD.gn
@@ -0,0 +1,36 @@
+# Copyright 2014 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("packed_ct_ev_whitelist") {
+ sources = [
+ "bit_stream_reader.cc",
+ "bit_stream_reader.h",
+ "packed_ct_ev_whitelist.cc",
+ "packed_ct_ev_whitelist.h",
+ ]
+
+ deps = [
+ "//base",
+ "//content",
+ "//net",
+ ]
+
+ if (is_win) {
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ cflags = [ "/wd4267" ]
+ }
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "bit_stream_reader_unittest.cc",
+ "packed_ct_ev_whitelist_unittest.cc",
+ ]
+
+ deps = [
+ ":packed_ct_ev_whitelist",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « components/packed_ct_ev_whitelist.gypi ('k') | components/packed_ct_ev_whitelist/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698