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

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

Issue 2972733002: Creates common super class for bookmark handset and tablet view controllers (Closed)
Patch Set: Created 3 years, 5 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 source_set("bookmarks") { 5 source_set("bookmarks") {
6 configs += [ "//build/config/compiler:enable_arc" ] 6 configs += [ "//build/config/compiler:enable_arc" ]
7 sources = [ 7 sources = [
8 "bookmark_collection_cells.h", 8 "bookmark_collection_cells.h",
9 "bookmark_collection_cells.mm", 9 "bookmark_collection_cells.mm",
10 "bookmark_collection_view.h", 10 "bookmark_collection_view.h",
(...skipping 12 matching lines...) Expand all
23 "bookmark_folder_editor_view_controller.mm", 23 "bookmark_folder_editor_view_controller.mm",
24 "bookmark_folder_table_view_cell.h", 24 "bookmark_folder_table_view_cell.h",
25 "bookmark_folder_table_view_cell.mm", 25 "bookmark_folder_table_view_cell.mm",
26 "bookmark_folder_view_controller.h", 26 "bookmark_folder_view_controller.h",
27 "bookmark_folder_view_controller.mm", 27 "bookmark_folder_view_controller.mm",
28 "bookmark_home_handset_view_controller.h", 28 "bookmark_home_handset_view_controller.h",
29 "bookmark_home_handset_view_controller.mm", 29 "bookmark_home_handset_view_controller.mm",
30 "bookmark_home_primary_view.h", 30 "bookmark_home_primary_view.h",
31 "bookmark_home_tablet_ntp_controller.h", 31 "bookmark_home_tablet_ntp_controller.h",
32 "bookmark_home_tablet_ntp_controller.mm", 32 "bookmark_home_tablet_ntp_controller.mm",
33 "bookmark_home_view_controller.h",
34 "bookmark_home_view_controller.mm",
33 "bookmark_home_waiting_view.h", 35 "bookmark_home_waiting_view.h",
34 "bookmark_home_waiting_view.mm", 36 "bookmark_home_waiting_view.mm",
35 "bookmark_interaction_controller.h", 37 "bookmark_interaction_controller.h",
36 "bookmark_interaction_controller.mm", 38 "bookmark_interaction_controller.mm",
37 "bookmark_menu_cell.h", 39 "bookmark_menu_cell.h",
38 "bookmark_menu_cell.mm", 40 "bookmark_menu_cell.mm",
39 "bookmark_menu_item.h", 41 "bookmark_menu_item.h",
40 "bookmark_menu_item.mm", 42 "bookmark_menu_item.mm",
41 "bookmark_menu_view.h", 43 "bookmark_menu_view.h",
42 "bookmark_menu_view.mm", 44 "bookmark_menu_view.mm",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 "QuartzCore.framework", 122 "QuartzCore.framework",
121 "UIKit.framework", 123 "UIKit.framework",
122 ] 124 ]
123 } 125 }
124 126
125 source_set("unit_tests") { 127 source_set("unit_tests") {
126 configs += [ "//build/config/compiler:enable_arc" ] 128 configs += [ "//build/config/compiler:enable_arc" ]
127 testonly = true 129 testonly = true
128 sources = [ 130 sources = [
129 "bookmark_home_handset_view_controller_unittest.mm", 131 "bookmark_home_handset_view_controller_unittest.mm",
132 "bookmark_home_view_controller_unittest.mm",
130 "bookmark_ios_unittest.h", 133 "bookmark_ios_unittest.h",
131 "bookmark_ios_unittest.mm", 134 "bookmark_ios_unittest.mm",
132 "bookmark_position_cache_unittest.mm", 135 "bookmark_position_cache_unittest.mm",
133 "bookmark_utils_ios_unittest.mm", 136 "bookmark_utils_ios_unittest.mm",
134 ] 137 ]
135 deps = [ 138 deps = [
136 ":bookmarks", 139 ":bookmarks",
137 "//base", 140 "//base",
138 "//components/bookmarks/browser", 141 "//components/bookmarks/browser",
139 "//components/bookmarks/test", 142 "//components/bookmarks/test",
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "resources/bookmark_white_edit@2x.png", 246 "resources/bookmark_white_edit@2x.png",
244 "resources/bookmark_white_edit@3x.png", 247 "resources/bookmark_white_edit@3x.png",
245 "resources/bookmark_white_move.png", 248 "resources/bookmark_white_move.png",
246 "resources/bookmark_white_move@2x.png", 249 "resources/bookmark_white_move@2x.png",
247 "resources/bookmark_white_move@3x.png", 250 "resources/bookmark_white_move@3x.png",
248 ] 251 ]
249 outputs = [ 252 outputs = [
250 "{{bundle_resources_dir}}/{{source_file_part}}", 253 "{{bundle_resources_dir}}/{{source_file_part}}",
251 ] 254 ]
252 } 255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698