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

Side by Side Diff: ios/chrome/browser/ssl/BUILD.gn

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: update comments. Created 4 years, 1 month 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("ssl") { 5 source_set("ssl") {
6 sources = [ 6 sources = [
7 "ios_chrome_security_state_model_client.h", 7 "ios_security_state_tab_helper.h",
8 "ios_chrome_security_state_model_client.mm", 8 "ios_security_state_tab_helper.mm",
9 "ios_ssl_blocking_page.h", 9 "ios_ssl_blocking_page.h",
10 "ios_ssl_blocking_page.mm", 10 "ios_ssl_blocking_page.mm",
11 "ios_ssl_error_handler.h", 11 "ios_ssl_error_handler.h",
12 "ios_ssl_error_handler.mm", 12 "ios_ssl_error_handler.mm",
13 ] 13 ]
14 deps = [ 14 deps = [
15 "//base", 15 "//base",
16 "//components/security_interstitials/core", 16 "//components/security_interstitials/core",
17 "//components/security_state", 17 "//components/security_state/core",
18 "//components/strings", 18 "//components/strings",
19 "//ios/chrome/app/strings", 19 "//ios/chrome/app/strings",
20 "//ios/chrome/browser/browser_state", 20 "//ios/chrome/browser/browser_state",
21 "//ios/chrome/browser/interstitials", 21 "//ios/chrome/browser/interstitials",
22 "//ios/public/provider/chrome/browser", 22 "//ios/public/provider/chrome/browser",
23 "//ios/web", 23 "//ios/web",
24 "//net", 24 "//net",
25 "//ui/base", 25 "//ui/base",
26 "//url", 26 "//url",
27 ] 27 ]
28 } 28 }
29 29
30 source_set("unit_tests") { 30 source_set("unit_tests") {
31 testonly = true 31 testonly = true
32 sources = [ 32 sources = [
33 "ios_ssl_error_handler_unittest.mm", 33 "ios_ssl_error_handler_unittest.mm",
34 ] 34 ]
35 deps = [ 35 deps = [
36 ":ssl", 36 ":ssl",
37 "//ios/chrome/browser/browser_state:test_support", 37 "//ios/chrome/browser/browser_state:test_support",
38 "//ios/web", 38 "//ios/web",
39 "//ios/web:test_support", 39 "//ios/web:test_support",
40 "//net", 40 "//net",
41 "//net:test_support", 41 "//net:test_support",
42 ] 42 ]
43 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698