summaryrefslogtreecommitdiffstats
path: root/components/packed_ct_ev_whitelist/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'components/packed_ct_ev_whitelist/BUILD.gn')
-rw-r--r--components/packed_ct_ev_whitelist/BUILD.gn36
1 files changed, 36 insertions, 0 deletions
diff --git a/components/packed_ct_ev_whitelist/BUILD.gn b/components/packed_ct_ev_whitelist/BUILD.gn
new file mode 100644
index 0000000..ae9561e
--- /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",
+ ]
+}