blob: cde9709a0dfa29b8db914ef67cea076db2923dbf [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("web_view") {
sources = [
"wk_web_view_util.h",
"wk_web_view_util.mm",
]
deps = [
"//base",
]
configs += [ "//build/config/compiler:enable_arc" ]
}
source_set("unittests") {
configs += [ "//build/config/compiler:enable_arc" ]
testonly = true
deps = [
":web_view",
"//base",
"//base/test:test_support",
"//testing/gtest",
]
sources = [
"wk_web_view_util_unittest.mm",
]
}