blob: a1561641ae5234f88b97533bdecc81ff44b3a620 [file] [log] [blame]
# Copyright 2019 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.
import("//ios/build/config.gni")
source_set("common") {
sources = [
"crw_content_view.h",
"crw_web_view_content_view.h",
"crw_web_view_content_view.mm",
"features.h",
"features.mm",
"origin_util.h",
"origin_util.mm",
"referrer_util.cc",
"referrer_util.h",
"url_util.cc",
"url_util.h",
]
deps = [
"//base",
"//ios/web/public:referrer",
"//net",
"//url",
]
libs = [ "UIKit.framework" ]
configs += [ "//build/config/compiler:enable_arc" ]
}
source_set("unittests") {
configs += [ "//build/config/compiler:enable_arc" ]
testonly = true
deps = [
":common",
"//base",
"//ios/web/public:referrer",
"//net",
"//testing/gtest",
"//url",
]
sources = [
"origin_util_unittest.mm",
"referrer_util_unittest.cc",
"url_util_unittest.cc",
]
}