mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-04 11:16:12 +03:00
53 lines
1.0 KiB
Plaintext
53 lines
1.0 KiB
Plaintext
|
# Copyright 2018 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
component("ios") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/autofill/core/common",
|
||
|
"//ios/web/public",
|
||
|
"//url",
|
||
|
]
|
||
|
|
||
|
sources = [
|
||
|
"account_select_fill_data.cc",
|
||
|
"account_select_fill_data.h",
|
||
|
"js_password_manager.h",
|
||
|
"js_password_manager.mm",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
static_library("test_support") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"test_helpers.cc",
|
||
|
"test_helpers.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/autofill/core/common",
|
||
|
"//url",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("unit_tests") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"account_select_fill_data_unittest.cc",
|
||
|
]
|
||
|
deps = [
|
||
|
":ios",
|
||
|
":test_support",
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//components/autofill/core/common",
|
||
|
"//testing/gmock",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|