| 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("content_suggestions") { | 5 source_set("content_suggestions") { |
| 6 sources = [ | 6 sources = [ |
| 7 "content_suggestion.h", | 7 "content_suggestion.h", |
| 8 "content_suggestion.mm", | 8 "content_suggestion.mm", |
| 9 "content_suggestion_extra_builder.h", |
| 10 "content_suggestion_extra_builder.mm", |
| 9 "content_suggestions_collection_updater.h", | 11 "content_suggestions_collection_updater.h", |
| 10 "content_suggestions_collection_updater.mm", | 12 "content_suggestions_collection_updater.mm", |
| 11 "content_suggestions_commands.h", | 13 "content_suggestions_commands.h", |
| 12 "content_suggestions_data_sink.h", | 14 "content_suggestions_data_sink.h", |
| 13 "content_suggestions_data_source.h", | 15 "content_suggestions_data_source.h", |
| 14 "content_suggestions_image_fetcher.h", | 16 "content_suggestions_image_fetcher.h", |
| 15 "content_suggestions_view_controller.h", | 17 "content_suggestions_view_controller.h", |
| 16 "content_suggestions_view_controller.mm", | 18 "content_suggestions_view_controller.mm", |
| 17 ] | 19 ] |
| 18 deps = [ | 20 deps = [ |
| 19 ":resources", | 21 ":resources", |
| 20 "//base", | 22 "//base", |
| 21 "//components/strings", | 23 "//components/strings", |
| 22 "//ios/chrome/browser/ui/collection_view", | 24 "//ios/chrome/browser/ui/collection_view", |
| 23 "//ios/chrome/browser/ui/content_suggestions/cells", | 25 "//ios/chrome/browser/ui/content_suggestions/cells", |
| 24 "//ios/chrome/browser/ui/content_suggestions/identifier", | 26 "//ios/chrome/browser/ui/content_suggestions/identifier", |
| 25 "//ios/chrome/browser/ui/favicon:favicon_ui", | 27 "//ios/chrome/browser/ui/favicon:favicon_ui", |
| 28 "//ios/chrome/browser/ui/reading_list", |
| 26 "//ui/base", | 29 "//ui/base", |
| 27 "//url", | 30 "//url", |
| 28 ] | 31 ] |
| 29 public_deps = [ | 32 public_deps = [ |
| 30 "//ios/third_party/material_components_ios", | 33 "//ios/third_party/material_components_ios", |
| 31 ] | 34 ] |
| 32 configs += [ "//build/config/compiler:enable_arc" ] | 35 configs += [ "//build/config/compiler:enable_arc" ] |
| 33 } | 36 } |
| 34 | 37 |
| 35 source_set("unit_tests") { | 38 source_set("unit_tests") { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 51 bundle_data("resources") { | 54 bundle_data("resources") { |
| 52 sources = [ | 55 sources = [ |
| 53 "resources/content_suggestions_no_image.png", | 56 "resources/content_suggestions_no_image.png", |
| 54 "resources/content_suggestions_no_image@2x.png", | 57 "resources/content_suggestions_no_image@2x.png", |
| 55 "resources/content_suggestions_no_image@3x.png", | 58 "resources/content_suggestions_no_image@3x.png", |
| 56 ] | 59 ] |
| 57 outputs = [ | 60 outputs = [ |
| 58 "{{bundle_resources_dir}}/{{source_file_part}}", | 61 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 59 ] | 62 ] |
| 60 } | 63 } |
| OLD | NEW |