| 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("suggestions") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ |
| 8 "suggestions_commands.h", |
| 9 "suggestions_item_actions.h", |
| 10 "suggestions_view_controller.h", |
| 11 "suggestions_view_controller.mm", |
| 12 ] |
| 13 deps = [ |
| 14 "//base", |
| 15 "//ios/chrome/browser/ui", |
| 16 "//ios/chrome/browser/ui/collection_view", |
| 17 "//ios/third_party/material_roboto_font_loader_ios", |
| 18 ] |
| 19 public_deps = [ |
| 20 "//ios/third_party/material_components_ios", |
| 21 ] |
| 22 } |
| OLD | NEW |