| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("ssl") { |
| 6 sources = [ |
| 7 "ios_chrome_security_state_model_client.h", |
| 8 "ios_chrome_security_state_model_client.mm", |
| 9 "ios_ssl_blocking_page.h", |
| 10 "ios_ssl_blocking_page.mm", |
| 11 "ios_ssl_error_handler.h", |
| 12 "ios_ssl_error_handler.mm", |
| 13 ] |
| 14 deps = [ |
| 15 "//base", |
| 16 "//components/security_interstitials/core", |
| 17 "//components/security_state", |
| 18 "//components/strings", |
| 19 "//ios/chrome/app/strings", |
| 20 "//ios/chrome/browser/browser_state", |
| 21 "//ios/chrome/browser/interstitials", |
| 22 "//ios/public/provider/chrome/browser", |
| 23 "//ios/web", |
| 24 "//net", |
| 25 "//ui/base", |
| 26 "//url", |
| 27 ] |
| 28 } |
| 29 |
| 30 source_set("unit_tests") { |
| 31 testonly = true |
| 32 sources = [ |
| 33 "ios_ssl_error_handler_unittest.mm", |
| 34 ] |
| 35 deps = [ |
| 36 ":ssl", |
| 37 "//ios/chrome/browser/browser_state:test_support", |
| 38 "//ios/web", |
| 39 "//ios/web:test_support", |
| 40 "//net", |
| 41 "//net:test_support", |
| 42 ] |
| 43 } |
| OLD | NEW |