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

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

Issue 2741413005: [ObjC ARC] Converts ios/chrome/browser/ui/bookmarks:bookmarks_arc to ARC. (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | ios/chrome/browser/ui/bookmarks/bookmark_collection_cells.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_arc") { 5 source_set("bookmarks_arc") {
lpromero 2017/03/13 16:11:14 Is the CL description still accurate? (Usually, w
stkhapugin 2017/03/13 16:41:34 Done.
6 configs += [ "//build/config/compiler:enable_arc" ] 6 configs += [ "//build/config/compiler:enable_arc" ]
7 sources = [ 7 sources = [
8 "bookmark_collection_cells.h",
9 "bookmark_collection_cells.mm",
10 "bookmark_collection_view.h",
11 "bookmark_collection_view.mm",
12 "bookmark_collection_view_background.h",
13 "bookmark_collection_view_background.mm",
14 "bookmark_controller_factory.h",
15 "bookmark_controller_factory.mm",
16 "bookmark_edit_view_controller.h",
17 "bookmark_edit_view_controller.mm",
18 "bookmark_elevated_toolbar.h",
19 "bookmark_elevated_toolbar.mm",
20 "bookmark_extended_button.h",
21 "bookmark_extended_button.mm",
22 "bookmark_folder_collection_view.h",
23 "bookmark_folder_collection_view.mm",
24 "bookmark_folder_editor_view_controller.h",
25 "bookmark_folder_editor_view_controller.mm",
26 "bookmark_folder_table_view_cell.h",
27 "bookmark_folder_table_view_cell.mm",
28 "bookmark_folder_view_controller.h",
29 "bookmark_folder_view_controller.mm",
8 "bookmark_home_handset_view_controller.h", 30 "bookmark_home_handset_view_controller.h",
9 "bookmark_home_handset_view_controller.mm", 31 "bookmark_home_handset_view_controller.mm",
10 "bookmark_home_tablet_ntp_controller.h", 32 "bookmark_home_tablet_ntp_controller.h",
11 "bookmark_home_tablet_ntp_controller.mm", 33 "bookmark_home_tablet_ntp_controller.mm",
12 "bookmark_utils_ios.h", 34 "bookmark_utils_ios.h",
13 "bookmark_utils_ios.mm", 35 "bookmark_utils_ios.mm",
14 ] 36 ]
15 deps = [ 37 deps = [
16 ":resources", 38 ":resources",
17 "//base", 39 "//base",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 ] 88 ]
67 libs = [ 89 libs = [
68 "CoreGraphics.framework", 90 "CoreGraphics.framework",
69 "QuartzCore.framework", 91 "QuartzCore.framework",
70 "UIKit.framework", 92 "UIKit.framework",
71 ] 93 ]
72 } 94 }
73 95
74 source_set("bookmarks") { 96 source_set("bookmarks") {
75 sources = [ 97 sources = [
76 "bookmark_collection_cells.h",
77 "bookmark_collection_cells.mm",
78 "bookmark_collection_view.h",
79 "bookmark_collection_view.mm",
80 "bookmark_collection_view_background.h",
81 "bookmark_collection_view_background.mm",
82 "bookmark_controller_factory.h",
83 "bookmark_controller_factory.mm",
84 "bookmark_edit_view_controller.h",
85 "bookmark_edit_view_controller.mm",
86 "bookmark_elevated_toolbar.h",
87 "bookmark_elevated_toolbar.mm",
88 "bookmark_extended_button.h",
89 "bookmark_extended_button.mm",
90 "bookmark_folder_collection_view.h",
91 "bookmark_folder_collection_view.mm",
92 "bookmark_folder_editor_view_controller.h",
93 "bookmark_folder_editor_view_controller.mm",
94 "bookmark_folder_table_view_cell.h",
95 "bookmark_folder_table_view_cell.mm",
96 "bookmark_folder_view_controller.h",
97 "bookmark_folder_view_controller.mm",
98 "bookmark_home_primary_view.h", 98 "bookmark_home_primary_view.h",
99 "bookmark_home_view_controller.h", 99 "bookmark_home_view_controller.h",
100 "bookmark_home_view_controller.mm", 100 "bookmark_home_view_controller.mm",
101 "bookmark_home_waiting_view.h", 101 "bookmark_home_waiting_view.h",
102 "bookmark_home_waiting_view.mm", 102 "bookmark_home_waiting_view.mm",
103 "bookmark_interaction_controller.h", 103 "bookmark_interaction_controller.h",
104 "bookmark_interaction_controller.mm", 104 "bookmark_interaction_controller.mm",
105 "bookmark_menu_cell.h", 105 "bookmark_menu_cell.h",
106 "bookmark_menu_cell.mm", 106 "bookmark_menu_cell.mm",
107 "bookmark_menu_item.h", 107 "bookmark_menu_item.h",
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "resources/bookmark_white_edit@2x.png", 328 "resources/bookmark_white_edit@2x.png",
329 "resources/bookmark_white_edit@3x.png", 329 "resources/bookmark_white_edit@3x.png",
330 "resources/bookmark_white_move.png", 330 "resources/bookmark_white_move.png",
331 "resources/bookmark_white_move@2x.png", 331 "resources/bookmark_white_move@2x.png",
332 "resources/bookmark_white_move@3x.png", 332 "resources/bookmark_white_move@3x.png",
333 ] 333 ]
334 outputs = [ 334 outputs = [
335 "{{bundle_resources_dir}}/{{source_file_part}}", 335 "{{bundle_resources_dir}}/{{source_file_part}}",
336 ] 336 ]
337 } 337 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/browser/ui/bookmarks/bookmark_collection_cells.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698