| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("update_client") { |
| 6 sources = [ |
| 7 "ios_chrome_update_query_params_delegate.cc", |
| 8 "ios_chrome_update_query_params_delegate.h", |
| 9 ] |
| 10 deps = [ |
| 11 "//base", |
| 12 "//components/update_client", |
| 13 "//components/version_info", |
| 14 "//ios/chrome/browser:browser_no_public_deps", |
| 15 "//ios/chrome/common", |
| 16 ] |
| 17 } |
| 18 |
| 19 source_set("unit_tests") { |
| 20 testonly = true |
| 21 sources = [ |
| 22 "ios_chrome_update_query_params_delegate_unittest.cc", |
| 23 ] |
| 24 deps = [ |
| 25 ":update_client", |
| 26 "//base", |
| 27 "//components/update_client", |
| 28 "//components/version_info", |
| 29 "//ios/chrome/common", |
| 30 "//testing/gtest", |
| 31 ] |
| 32 } |
| OLD | NEW |