| 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 "sc_content_suggestions_coordinator.h", | 7 "sc_content_suggestions_coordinator.h", |
| 8 "sc_content_suggestions_coordinator.mm", | 8 "sc_content_suggestions_coordinator.mm", |
| 9 "sc_content_suggestions_data_source.h", |
| 10 "sc_content_suggestions_data_source.mm", |
| 11 "sc_content_suggestions_item.h", |
| 12 "sc_content_suggestions_item.mm", |
| 13 "sc_content_suggestions_most_visited_item.h", |
| 14 "sc_content_suggestions_most_visited_item.mm", |
| 9 ] | 15 ] |
| 10 deps = [ | 16 deps = [ |
| 11 "//base", | 17 "//base", |
| 18 "//components/strings", |
| 19 "//ios/chrome/app/strings", |
| 20 "//ios/chrome/browser/ui/collection_view/cells", |
| 12 "//ios/chrome/browser/ui/content_suggestions", | 21 "//ios/chrome/browser/ui/content_suggestions", |
| 22 "//ios/chrome/browser/ui/content_suggestions/cells:cells_ui", |
| 23 "//ios/chrome/browser/ui/content_suggestions/identifier", |
| 24 "//ios/chrome/browser/ui/favicon:favicon_ui", |
| 13 "//ios/showcase/common", | 25 "//ios/showcase/common", |
| 26 "//ui/base", |
| 14 ] | 27 ] |
| 15 libs = [ "UIKit.framework" ] | 28 libs = [ "UIKit.framework" ] |
| 16 configs += [ "//build/config/compiler:enable_arc" ] | 29 configs += [ "//build/config/compiler:enable_arc" ] |
| 17 } | 30 } |
| 18 | 31 |
| 19 source_set("eg_tests") { | 32 source_set("eg_tests") { |
| 20 testonly = true | 33 testonly = true |
| 21 sources = [ | 34 sources = [ |
| 22 "sc_content_suggestions_egtest.mm", | 35 "sc_content_suggestions_egtest.mm", |
| 23 ] | 36 ] |
| 24 deps = [ | 37 deps = [ |
| 38 "//components/strings", |
| 39 "//ios/chrome/app/strings", |
| 40 "//ios/chrome/test/earl_grey:test_support", |
| 25 "//ios/showcase/test", | 41 "//ios/showcase/test", |
| 26 "//ios/third_party/earl_grey", | 42 "//ios/third_party/earl_grey", |
| 27 ] | 43 ] |
| 28 configs += [ "//build/config/compiler:enable_arc" ] | 44 configs += [ "//build/config/compiler:enable_arc" ] |
| 29 } | 45 } |
| OLD | NEW |