naiveproxy/ios/public/provider/chrome/browser/external_search/BUILD.gn
2018-08-11 05:35:24 +00:00

28 lines
643 B
Plaintext

# Copyright 2017 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.
source_set("external_search") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"external_search_provider.h",
"external_search_provider.mm",
]
deps = [
"//base",
]
libs = [ "Foundation.framework" ]
}
source_set("test_support") {
configs += [ "//build/config/compiler:enable_arc" ]
testonly = true
sources = [
"test_external_search_provider.h",
"test_external_search_provider.mm",
]
deps = [
":external_search",
]
}