| 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("cells") { | 5 source_set("cells") { |
| 6 sources = [ | 6 sources = [ |
| 7 "cvc_item.h", | 7 "cvc_item.h", |
| 8 "cvc_item.mm", | 8 "cvc_item.mm", |
| 9 "status_item.h", | 9 "status_item.h", |
| 10 "status_item.mm", | 10 "status_item.mm", |
| 11 "storage_switch_item.h", | 11 "storage_switch_item.h", |
| 12 "storage_switch_item.mm", | 12 "storage_switch_item.mm", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 deps = [ | 15 deps = [ |
| 16 "//components/resources", | 16 "//components/resources", |
| 17 "//components/strings", | 17 "//components/strings", |
| 18 "//ios/chrome/app/strings", | 18 "//ios/chrome/app/strings", |
| 19 "//ios/chrome/app/theme", | 19 "//ios/chrome/app/theme", |
| 20 "//ios/chrome/browser/ui", |
| 20 "//ios/chrome/browser/ui/collection_view/cells", | 21 "//ios/chrome/browser/ui/collection_view/cells", |
| 21 "//ios/chrome/browser/ui/colors", | 22 "//ios/chrome/browser/ui/colors", |
| 22 "//ios/public/provider/chrome/browser", | 23 "//ios/public/provider/chrome/browser", |
| 23 "//ios/public/provider/chrome/browser/ui", | 24 "//ios/public/provider/chrome/browser/ui", |
| 24 "//ios/third_party/material_components_ios", | 25 "//ios/third_party/material_components_ios", |
| 25 "//ios/third_party/material_roboto_font_loader_ios", | 26 "//ios/third_party/material_roboto_font_loader_ios", |
| 26 "//ui/base", | 27 "//ui/base", |
| 27 ] | 28 ] |
| 28 | 29 |
| 29 configs += [ "//build/config/compiler:enable_arc" ] | 30 configs += [ "//build/config/compiler:enable_arc" ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 41 ":cells", | 42 ":cells", |
| 42 "//base", | 43 "//base", |
| 43 "//components/resources", | 44 "//components/resources", |
| 44 "//ios/chrome/browser/ui/collection_view/cells", | 45 "//ios/chrome/browser/ui/collection_view/cells", |
| 45 "//ios/third_party/material_components_ios", | 46 "//ios/third_party/material_components_ios", |
| 46 "//testing/gtest", | 47 "//testing/gtest", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 configs += [ "//build/config/compiler:enable_arc" ] | 50 configs += [ "//build/config/compiler:enable_arc" ] |
| 50 } | 51 } |
| OLD | NEW |