naiveproxy/ios/chrome/browser/update_client/BUILD.gn

33 lines
756 B
Plaintext
Raw Normal View History

2018-08-15 01:19:20 +03:00
# Copyright 2016 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("update_client") {
sources = [
"ios_chrome_update_query_params_delegate.cc",
"ios_chrome_update_query_params_delegate.h",
]
deps = [
"//base",
"//components/update_client",
"//components/version_info",
"//ios/chrome/browser",
"//ios/chrome/common",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"ios_chrome_update_query_params_delegate_unittest.cc",
]
deps = [
":update_client",
"//base",
"//components/update_client",
"//components/version_info",
"//ios/chrome/common",
"//testing/gtest",
]
}