| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("upgrade") { | 5 source_set("upgrade") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 6 sources = [ | 7 sources = [ |
| 7 "upgrade_center.h", | 8 "upgrade_center.h", |
| 8 "upgrade_center.mm", | 9 "upgrade_center.mm", |
| 9 "upgrade_recommended_details.h", | 10 "upgrade_recommended_details.h", |
| 10 ] | 11 ] |
| 11 deps = [ | 12 deps = [ |
| 12 "//base", | 13 "//base", |
| 13 "//components/infobars/core", | 14 "//components/infobars/core", |
| 14 "//components/version_info", | 15 "//components/version_info", |
| 15 "//ios/chrome/app/strings", | 16 "//ios/chrome/app/strings", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 30 testonly = true | 31 testonly = true |
| 31 sources = [ | 32 sources = [ |
| 32 "upgrade_center_unittest.mm", | 33 "upgrade_center_unittest.mm", |
| 33 ] | 34 ] |
| 34 deps = [ | 35 deps = [ |
| 35 ":upgrade", | 36 ":upgrade", |
| 36 "//base", | 37 "//base", |
| 37 "//testing/gtest", | 38 "//testing/gtest", |
| 38 ] | 39 ] |
| 39 } | 40 } |
| OLD | NEW |