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("dialogs") { |
| 6 deps = [ |
| 7 "//base", |
| 8 "//components/strings", |
| 9 "//components/url_formatter", |
| 10 "//ios/web", |
| 11 "//ui/base", |
| 12 ] |
| 13 |
| 14 sources = [ |
| 15 "nsurl_protection_space_util.h", |
| 16 "nsurl_protection_space_util.mm", |
| 17 ] |
| 18 |
| 19 configs += [ "//build/config/compiler:enable_arc" ] |
| 20 } |
| 21 |
| 22 source_set("unit_tests") { |
| 23 testonly = true |
| 24 |
| 25 sources = [ |
| 26 "nsurl_protection_space_util_unittest.mm", |
| 27 ] |
| 28 |
| 29 deps = [ |
| 30 ":dialogs", |
| 31 "//base", |
| 32 "//components/strings", |
| 33 "//ios/web", |
| 34 "//ios/web/public/test/fakes", |
| 35 "//testing/gtest", |
| 36 "//ui/base", |
| 37 ] |
| 38 |
| 39 configs += [ "//build/config/compiler:enable_arc" ] |
| 40 } |
OLD | NEW |