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

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

Issue 2693863005: Create ReadingListCoordinator (Closed)
Patch Set: Address comments Created 3 years, 10 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
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 bundle_data("resources") { 5 bundle_data("resources") {
6 sources = [ 6 sources = [
7 "resources/distillation_fail.png", 7 "resources/distillation_fail.png",
8 "resources/distillation_fail@2x.png", 8 "resources/distillation_fail@2x.png",
9 "resources/distillation_fail@3x.png", 9 "resources/distillation_fail@3x.png",
10 "resources/distillation_success.png", 10 "resources/distillation_success.png",
(...skipping 21 matching lines...) Expand all
32 configs += [ "//build/config/compiler:enable_arc" ] 32 configs += [ "//build/config/compiler:enable_arc" ]
33 sources = [ 33 sources = [
34 "number_badge_view.h", 34 "number_badge_view.h",
35 "number_badge_view.mm", 35 "number_badge_view.mm",
36 "offline_page_native_content.h", 36 "offline_page_native_content.h",
37 "offline_page_native_content.mm", 37 "offline_page_native_content.mm",
38 "reading_list_collection_view_controller.h", 38 "reading_list_collection_view_controller.h",
39 "reading_list_collection_view_controller.mm", 39 "reading_list_collection_view_controller.mm",
40 "reading_list_collection_view_item.h", 40 "reading_list_collection_view_item.h",
41 "reading_list_collection_view_item.mm", 41 "reading_list_collection_view_item.mm",
42 "reading_list_coordinator.h",
43 "reading_list_coordinator.mm",
42 "reading_list_empty_collection_background.h", 44 "reading_list_empty_collection_background.h",
43 "reading_list_empty_collection_background.mm", 45 "reading_list_empty_collection_background.mm",
44 "reading_list_menu_notification_delegate.h", 46 "reading_list_menu_notification_delegate.h",
45 "reading_list_menu_notifier.h", 47 "reading_list_menu_notifier.h",
46 "reading_list_menu_notifier.mm", 48 "reading_list_menu_notifier.mm",
47 "reading_list_side_swipe_provider.h", 49 "reading_list_side_swipe_provider.h",
48 "reading_list_side_swipe_provider.mm", 50 "reading_list_side_swipe_provider.mm",
49 "reading_list_toolbar.h", 51 "reading_list_toolbar.h",
50 "reading_list_toolbar.mm", 52 "reading_list_toolbar.mm",
51 "reading_list_view_controller.h", 53 "reading_list_view_controller.h",
52 "reading_list_view_controller.mm", 54 "reading_list_view_controller.mm",
53 "reading_list_view_controller_builder.h",
54 "reading_list_view_controller_builder.mm",
55 ] 55 ]
56 deps = [ 56 deps = [
57 ":resources", 57 ":resources",
58 "//base", 58 "//base",
59 "//components/prefs", 59 "//components/prefs",
60 "//components/reading_list/core", 60 "//components/reading_list/core",
61 "//components/strings", 61 "//components/strings",
62 "//components/url_formatter", 62 "//components/url_formatter",
63 "//ios/chrome/app/strings", 63 "//ios/chrome/app/strings",
64 "//ios/chrome/browser", 64 "//ios/chrome/browser",
(...skipping 25 matching lines...) Expand all
90 ] 90 ]
91 allow_circular_includes_from = [ "//ios/chrome/browser/ui/side_swipe" ] 91 allow_circular_includes_from = [ "//ios/chrome/browser/ui/side_swipe" ]
92 libs = [ "UIKit.framework" ] 92 libs = [ "UIKit.framework" ]
93 } 93 }
94 94
95 source_set("unit_tests") { 95 source_set("unit_tests") {
96 testonly = true 96 testonly = true
97 sources = [ 97 sources = [
98 "offline_page_native_content_unittest.mm", 98 "offline_page_native_content_unittest.mm",
99 "reading_list_collection_view_controller_unittest.mm", 99 "reading_list_collection_view_controller_unittest.mm",
100 "reading_list_view_controller_unittest.mm", 100 "reading_list_coordinator_unittest.mm",
101 ] 101 ]
102 deps = [ 102 deps = [
103 ":reading_list", 103 ":reading_list",
104 "//base", 104 "//base",
105 "//components/favicon/core", 105 "//components/favicon/core",
106 "//components/prefs", 106 "//components/prefs",
107 "//components/reading_list/ios", 107 "//components/reading_list/ios",
108 "//components/url_formatter", 108 "//components/url_formatter",
109 "//ios/chrome/browser/browser_state:test_support", 109 "//ios/chrome/browser/browser_state:test_support",
110 "//ios/chrome/browser/favicon", 110 "//ios/chrome/browser/favicon",
(...skipping 27 matching lines...) Expand all
138 "//ios/testing:ios_test_support", 138 "//ios/testing:ios_test_support",
139 "//ios/third_party/earl_grey", 139 "//ios/third_party/earl_grey",
140 "//ios/third_party/material_components_ios", 140 "//ios/third_party/material_components_ios",
141 "//ios/web:test_support", 141 "//ios/web:test_support",
142 ] 142 ]
143 libs = [ 143 libs = [
144 "UIKit.framework", 144 "UIKit.framework",
145 "XCTest.framework", 145 "XCTest.framework",
146 ] 146 ]
147 } 147 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698