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

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

Issue 2591823003: Remove ChromeBrowserProvider::RegisterProfilePrefs(). (Closed)
Patch Set: Fix multiple registration of preferences. Created 3 years, 12 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") {
6 sources = [
7 "resources/bookmark_bar_innershadow.png",
8 "resources/bookmark_bar_innershadow@2x.png",
9 "resources/bookmark_bar_innershadow@3x.png",
10 "resources/bookmark_bar_shadow.png",
11 "resources/bookmark_bar_shadow@2x.png",
12 "resources/bookmark_bar_shadow@3x.png",
13 "resources/bookmark_black_delete.png",
14 "resources/bookmark_black_delete@2x.png",
15 "resources/bookmark_black_delete@3x.png",
16 "resources/bookmark_black_edit.png",
17 "resources/bookmark_black_edit@2x.png",
18 "resources/bookmark_black_edit@3x.png",
19 "resources/bookmark_black_move.png",
20 "resources/bookmark_black_move@2x.png",
21 "resources/bookmark_black_move@3x.png",
22 "resources/bookmark_black_select.png",
23 "resources/bookmark_black_select@2x.png",
24 "resources/bookmark_black_select@3x.png",
25 "resources/bookmark_blue_check.png",
26 "resources/bookmark_blue_check@2x.png",
27 "resources/bookmark_blue_check@3x.png",
28 "resources/bookmark_blue_folder.png",
29 "resources/bookmark_blue_folder@2x.png",
30 "resources/bookmark_blue_folder@3x.png",
31 "resources/bookmark_blue_star.png",
32 "resources/bookmark_blue_star@2x.png",
33 "resources/bookmark_blue_star@3x.png",
34 "resources/bookmark_gray_back.png",
35 "resources/bookmark_gray_back@2x.png",
36 "resources/bookmark_gray_back@3x.png",
37 "resources/bookmark_gray_check.png",
38 "resources/bookmark_gray_check@2x.png",
39 "resources/bookmark_gray_check@3x.png",
40 "resources/bookmark_gray_close.png",
41 "resources/bookmark_gray_close@2x.png",
42 "resources/bookmark_gray_close@3x.png",
43 "resources/bookmark_gray_edit.png",
44 "resources/bookmark_gray_edit@2x.png",
45 "resources/bookmark_gray_edit@3x.png",
46 "resources/bookmark_gray_folder.png",
47 "resources/bookmark_gray_folder@2x.png",
48 "resources/bookmark_gray_folder@3x.png",
49 "resources/bookmark_gray_menu.png",
50 "resources/bookmark_gray_menu@2x.png",
51 "resources/bookmark_gray_menu@3x.png",
52 "resources/bookmark_gray_new_folder.png",
53 "resources/bookmark_gray_new_folder@2x.png",
54 "resources/bookmark_gray_new_folder@3x.png",
55 "resources/bookmark_gray_star.png",
56 "resources/bookmark_gray_star@2x.png",
57 "resources/bookmark_gray_star@3x.png",
58 "resources/bookmark_gray_star_large.png",
59 "resources/bookmark_gray_star_large@2x.png",
60 "resources/bookmark_gray_star_large@3x.png",
61 "resources/bookmark_more.png",
62 "resources/bookmark_more@2x.png",
63 "resources/bookmark_more@3x.png",
64 "resources/bookmark_white_close.png",
65 "resources/bookmark_white_close@2x.png",
66 "resources/bookmark_white_close@3x.png",
67 "resources/bookmark_white_delete.png",
68 "resources/bookmark_white_delete@2x.png",
69 "resources/bookmark_white_delete@3x.png",
70 "resources/bookmark_white_edit.png",
71 "resources/bookmark_white_edit@2x.png",
72 "resources/bookmark_white_edit@3x.png",
73 "resources/bookmark_white_move.png",
74 "resources/bookmark_white_move@2x.png",
75 "resources/bookmark_white_move@3x.png",
76 ]
77 outputs = [
78 "{{bundle_resources_dir}}/{{source_file_part}}",
79 ]
80 }
81
82 source_set("bookmarks") { 5 source_set("bookmarks") {
83 sources = [ 6 sources = [
84 "bookmark_all_collection_view.h", 7 "bookmark_all_collection_view.h",
85 "bookmark_all_collection_view.mm", 8 "bookmark_all_collection_view.mm",
86 "bookmark_collection_cells.h", 9 "bookmark_collection_cells.h",
87 "bookmark_collection_cells.mm", 10 "bookmark_collection_cells.mm",
88 "bookmark_collection_view.h", 11 "bookmark_collection_view.h",
89 "bookmark_collection_view.mm", 12 "bookmark_collection_view.mm",
90 "bookmark_collection_view_background.h", 13 "bookmark_collection_view_background.h",
91 "bookmark_collection_view_background.mm", 14 "bookmark_collection_view_background.mm",
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 "bookmark_home_view_controller_unittest.mm", 129 "bookmark_home_view_controller_unittest.mm",
207 "bookmark_ios_unittest.mm", 130 "bookmark_ios_unittest.mm",
208 "bookmark_position_cache_unittest.mm", 131 "bookmark_position_cache_unittest.mm",
209 "bookmark_utils_ios_unittest.mm", 132 "bookmark_utils_ios_unittest.mm",
210 ] 133 ]
211 deps = [ 134 deps = [
212 ":bookmarks", 135 ":bookmarks",
213 "//base", 136 "//base",
214 "//components/bookmarks/browser", 137 "//components/bookmarks/browser",
215 "//components/bookmarks/test", 138 "//components/bookmarks/test",
216 "//components/sync_preferences:test_support",
217 "//ios/chrome/browser", 139 "//ios/chrome/browser",
218 "//ios/chrome/browser/bookmarks", 140 "//ios/chrome/browser/bookmarks",
219 "//ios/chrome/browser/browser_state:test_support", 141 "//ios/chrome/browser/browser_state:test_support",
220 "//ios/web:test_support", 142 "//ios/web:test_support",
221 "//testing/gtest", 143 "//testing/gtest",
222 ] 144 ]
223 } 145 }
224 146
225 source_set("eg_tests") { 147 source_set("eg_tests") {
226 testonly = true 148 testonly = true
(...skipping 21 matching lines...) Expand all
248 "//ios/third_party/earl_grey", 170 "//ios/third_party/earl_grey",
249 "//ios/web:test_support", 171 "//ios/web:test_support",
250 "//ui/base", 172 "//ui/base",
251 "//url", 173 "//url",
252 ] 174 ]
253 libs = [ 175 libs = [
254 "UIKit.framework", 176 "UIKit.framework",
255 "XCTest.framework", 177 "XCTest.framework",
256 ] 178 ]
257 } 179 }
180
181 bundle_data("resources") {
182 sources = [
183 "resources/bookmark_bar_innershadow.png",
184 "resources/bookmark_bar_innershadow@2x.png",
185 "resources/bookmark_bar_innershadow@3x.png",
186 "resources/bookmark_bar_shadow.png",
187 "resources/bookmark_bar_shadow@2x.png",
188 "resources/bookmark_bar_shadow@3x.png",
189 "resources/bookmark_black_delete.png",
190 "resources/bookmark_black_delete@2x.png",
191 "resources/bookmark_black_delete@3x.png",
192 "resources/bookmark_black_edit.png",
193 "resources/bookmark_black_edit@2x.png",
194 "resources/bookmark_black_edit@3x.png",
195 "resources/bookmark_black_move.png",
196 "resources/bookmark_black_move@2x.png",
197 "resources/bookmark_black_move@3x.png",
198 "resources/bookmark_black_select.png",
199 "resources/bookmark_black_select@2x.png",
200 "resources/bookmark_black_select@3x.png",
201 "resources/bookmark_blue_check.png",
202 "resources/bookmark_blue_check@2x.png",
203 "resources/bookmark_blue_check@3x.png",
204 "resources/bookmark_blue_folder.png",
205 "resources/bookmark_blue_folder@2x.png",
206 "resources/bookmark_blue_folder@3x.png",
207 "resources/bookmark_blue_star.png",
208 "resources/bookmark_blue_star@2x.png",
209 "resources/bookmark_blue_star@3x.png",
210 "resources/bookmark_gray_back.png",
211 "resources/bookmark_gray_back@2x.png",
212 "resources/bookmark_gray_back@3x.png",
213 "resources/bookmark_gray_check.png",
214 "resources/bookmark_gray_check@2x.png",
215 "resources/bookmark_gray_check@3x.png",
216 "resources/bookmark_gray_close.png",
217 "resources/bookmark_gray_close@2x.png",
218 "resources/bookmark_gray_close@3x.png",
219 "resources/bookmark_gray_edit.png",
220 "resources/bookmark_gray_edit@2x.png",
221 "resources/bookmark_gray_edit@3x.png",
222 "resources/bookmark_gray_folder.png",
223 "resources/bookmark_gray_folder@2x.png",
224 "resources/bookmark_gray_folder@3x.png",
225 "resources/bookmark_gray_menu.png",
226 "resources/bookmark_gray_menu@2x.png",
227 "resources/bookmark_gray_menu@3x.png",
228 "resources/bookmark_gray_new_folder.png",
229 "resources/bookmark_gray_new_folder@2x.png",
230 "resources/bookmark_gray_new_folder@3x.png",
231 "resources/bookmark_gray_star.png",
232 "resources/bookmark_gray_star@2x.png",
233 "resources/bookmark_gray_star@3x.png",
234 "resources/bookmark_gray_star_large.png",
235 "resources/bookmark_gray_star_large@2x.png",
236 "resources/bookmark_gray_star_large@3x.png",
237 "resources/bookmark_more.png",
238 "resources/bookmark_more@2x.png",
239 "resources/bookmark_more@3x.png",
240 "resources/bookmark_white_close.png",
241 "resources/bookmark_white_close@2x.png",
242 "resources/bookmark_white_close@3x.png",
243 "resources/bookmark_white_delete.png",
244 "resources/bookmark_white_delete@2x.png",
245 "resources/bookmark_white_delete@3x.png",
246 "resources/bookmark_white_edit.png",
247 "resources/bookmark_white_edit@2x.png",
248 "resources/bookmark_white_edit@3x.png",
249 "resources/bookmark_white_move.png",
250 "resources/bookmark_white_move@2x.png",
251 "resources/bookmark_white_move@3x.png",
252 ]
253 outputs = [
254 "{{bundle_resources_dir}}/{{source_file_part}}",
255 ]
256 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/prefs/browser_prefs.mm ('k') | ios/chrome/browser/ui/bookmarks/bookmark_home_view_controller_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698