OLD | NEW |
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 configs += [ "//build/config/compiler:enable_arc" ] |
6 sources = [ | 7 sources = [ |
7 "ios_security_state_tab_helper.h", | 8 "ios_security_state_tab_helper.h", |
8 "ios_security_state_tab_helper.mm", | 9 "ios_security_state_tab_helper.mm", |
9 "ios_ssl_blocking_page.h", | 10 "ios_ssl_blocking_page.h", |
10 "ios_ssl_blocking_page.mm", | 11 "ios_ssl_blocking_page.mm", |
11 "ios_ssl_error_handler.h", | 12 "ios_ssl_error_handler.h", |
12 "ios_ssl_error_handler.mm", | 13 "ios_ssl_error_handler.mm", |
13 ] | 14 ] |
14 deps = [ | 15 deps = [ |
15 "//base", | 16 "//base", |
(...skipping 18 matching lines...) Expand all Loading... |
34 ] | 35 ] |
35 deps = [ | 36 deps = [ |
36 ":ssl", | 37 ":ssl", |
37 "//ios/chrome/browser/browser_state:test_support", | 38 "//ios/chrome/browser/browser_state:test_support", |
38 "//ios/web", | 39 "//ios/web", |
39 "//ios/web:test_support", | 40 "//ios/web:test_support", |
40 "//net", | 41 "//net", |
41 "//net:test_support", | 42 "//net:test_support", |
42 ] | 43 ] |
43 } | 44 } |
OLD | NEW |