Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: ios/chrome/browser/ui/suggestions/BUILD.gn

Issue 2644123003: Move ios/ui/suggestions to ios/ui/content_suggestions (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 "expandable_item.h",
9 "suggestions_article_item.h",
10 "suggestions_article_item.mm",
11 "suggestions_collection_updater.h",
12 "suggestions_collection_updater.mm",
13 "suggestions_commands.h",
14 "suggestions_expandable_item.h",
15 "suggestions_expandable_item.mm",
16 "suggestions_favicon_internal_cell.h",
17 "suggestions_favicon_internal_cell.mm",
18 "suggestions_favicon_item.h",
19 "suggestions_favicon_item.mm",
20 "suggestions_item.h",
21 "suggestions_item.mm",
22 "suggestions_item_actions.h",
23 "suggestions_stack_item.h",
24 "suggestions_stack_item.mm",
25 "suggestions_stack_item_actions.h",
26 "suggestions_view_controller.h",
27 "suggestions_view_controller.mm",
28 ]
29 deps = [
30 "//base",
31 "//ios/chrome/browser/ui",
32 "//ios/chrome/browser/ui/collection_view",
33 "//ios/third_party/material_roboto_font_loader_ios",
34 "//ui/base",
35 ]
36 public_deps = [
37 "//ios/third_party/material_components_ios",
38 ]
39 }
40
41 source_set("unit_tests") {
42 configs += [ "//build/config/compiler:enable_arc" ]
43 testonly = true
44 sources = [
45 "suggestions_article_item_unittest.mm",
46 "suggestions_expandable_item_unittest.mm",
47 "suggestions_favicon_item_unittest.mm",
48 "suggestions_item_unittest.mm",
49 "suggestions_stack_item_unittest.mm",
50 ]
51 deps = [
52 ":suggestions",
53 "//base",
54 "//ios/chrome/browser/ui/collection_view",
55 "//testing/gtest",
56 "//third_party/ocmock",
57 ]
58 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/content_suggestions/expandable_item.h ('k') | ios/chrome/browser/ui/suggestions/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698