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

Side by Side Diff: components/certificate_transparency/BUILD.gn

Issue 2102783003: Add enterprise policy to exempt hosts from Certificate Transparency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@enterprise_ct
Patch Set: Created 4 years, 5 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("certificate_transparency") { 5 source_set("certificate_transparency") {
6 sources = [ 6 sources = [
7 "ct_policy_manager.cc",
8 "ct_policy_manager.h",
7 "log_proof_fetcher.cc", 9 "log_proof_fetcher.cc",
8 "log_proof_fetcher.h", 10 "log_proof_fetcher.h",
11 "pref_names.cc",
12 "pref_names.h",
9 "single_tree_tracker.cc", 13 "single_tree_tracker.cc",
10 "single_tree_tracker.h", 14 "single_tree_tracker.h",
11 "tree_state_tracker.cc", 15 "tree_state_tracker.cc",
12 "tree_state_tracker.h", 16 "tree_state_tracker.h",
13 ] 17 ]
14 18
15 deps = [ 19 deps = [
16 "//base", 20 "//base",
21 "//components/pref_registry",
22 "//components/prefs",
17 "//components/safe_json", 23 "//components/safe_json",
24 "//components/url_formatter",
25 "//components/url_matcher",
18 "//net", 26 "//net",
19 "//url", 27 "//url",
20 ] 28 ]
21 } 29 }
22 30
23 source_set("unit_tests") { 31 source_set("unit_tests") {
24 testonly = true 32 testonly = true
25 sources = [ 33 sources = [
26 "log_proof_fetcher_unittest.cc", 34 "log_proof_fetcher_unittest.cc",
27 "single_tree_tracker_unittest.cc", 35 "single_tree_tracker_unittest.cc",
28 ] 36 ]
29 37
30 deps = [ 38 deps = [
31 ":certificate_transparency", 39 ":certificate_transparency",
32 "//base/test:test_support", 40 "//base/test:test_support",
33 "//components/safe_json:test_support", 41 "//components/safe_json:test_support",
34 "//net:test_support", 42 "//net:test_support",
35 "//testing/gtest", 43 "//testing/gtest",
36 ] 44 ]
37 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698