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

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

Issue 1772143002: Use network time for bad clock interstitial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pass "gn check out/Default" Created 4 years, 9 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/security_interstitials/core/bad_clock_ui.cc ('k') | components/ssl_errors/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # GYP version: components/ssl_errors.gyp 5 # GYP version: components/ssl_errors.gyp
6 source_set("ssl_errors") { 6 source_set("ssl_errors") {
7 sources = [ 7 sources = [
8 "error_classification.cc", 8 "error_classification.cc",
9 "error_classification.h", 9 "error_classification.h",
10 "error_info.cc", 10 "error_info.cc",
11 "error_info.h", 11 "error_info.h",
12 ] 12 ]
13 13
14 deps = [ 14 deps = [
15 "//base", 15 "//base",
16 "//base:i18n", 16 "//base:i18n",
17 "//components/network_time",
17 "//components/strings", 18 "//components/strings",
18 "//components/url_formatter", 19 "//components/url_formatter",
19 "//net", 20 "//net",
20 "//ui/base", 21 "//ui/base",
21 ] 22 ]
22 } 23 }
23 24
24 source_set("unit_tests") { 25 source_set("unit_tests") {
25 testonly = true 26 testonly = true
26 sources = [ 27 sources = [
27 "error_classification_unittest.cc", 28 "error_classification_unittest.cc",
28 ] 29 ]
29 30
30 deps = [ 31 deps = [
31 ":ssl_errors", 32 ":ssl_errors",
32 "//base", 33 "//base",
34 "//components/network_time",
35 "//components/prefs:test_support",
33 "//net:test_support", 36 "//net:test_support",
34 "//testing/gtest", 37 "//testing/gtest",
35 ] 38 ]
36 } 39 }
OLDNEW
« no previous file with comments | « components/security_interstitials/core/bad_clock_ui.cc ('k') | components/ssl_errors/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698