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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 static_library("packed_ct_ev_whitelist") {
6 sources = [
7 "bit_stream_reader.cc",
8 "bit_stream_reader.h",
9 "packed_ct_ev_whitelist.cc",
10 "packed_ct_ev_whitelist.h",
11 ]
12
13 deps = [
14 "//base",
15 "//content",
16 "//net",
17 ]
18
19 if (is_win) {
20 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
21 cflags = [ "/wd4267" ]
22 }
23 }
24
25 source_set("unit_tests") {
26 testonly = true
27 sources = [
28 "bit_stream_reader_unittest.cc",
29 "packed_ct_ev_whitelist_unittest.cc",
30 ]
31
32 deps = [
33 ":packed_ct_ev_whitelist",
34 "//testing/gtest",
35 ]
36 }
OLDNEW
« 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