| OLD | NEW |
| 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", |
| 11 "bookmark_collection_view.mm", | 11 "bookmark_collection_view.mm", |
| 12 "bookmark_collection_view_background.h", | 12 "bookmark_collection_view_background.h", |
| 13 "bookmark_collection_view_background.mm", | 13 "bookmark_collection_view_background.mm", |
| 14 "bookmark_controller_factory.h", | 14 "bookmark_controller_factory.h", |
| 15 "bookmark_controller_factory.mm", | 15 "bookmark_controller_factory.mm", |
| 16 "bookmark_edit_view_controller.h", | 16 "bookmark_edit_view_controller.h", |
| 17 "bookmark_edit_view_controller.mm", | 17 "bookmark_edit_view_controller.mm", |
| 18 "bookmark_elevated_toolbar.h", | 18 "bookmark_elevated_toolbar.h", |
| 19 "bookmark_elevated_toolbar.mm", | 19 "bookmark_elevated_toolbar.mm", |
| 20 "bookmark_extended_button.h", | 20 "bookmark_extended_button.h", |
| 21 "bookmark_extended_button.mm", | 21 "bookmark_extended_button.mm", |
| 22 "bookmark_folder_collection_view.h", | |
| 23 "bookmark_folder_collection_view.mm", | |
| 24 "bookmark_folder_editor_view_controller.h", | 22 "bookmark_folder_editor_view_controller.h", |
| 25 "bookmark_folder_editor_view_controller.mm", | 23 "bookmark_folder_editor_view_controller.mm", |
| 26 "bookmark_folder_table_view_cell.h", | 24 "bookmark_folder_table_view_cell.h", |
| 27 "bookmark_folder_table_view_cell.mm", | 25 "bookmark_folder_table_view_cell.mm", |
| 28 "bookmark_folder_view_controller.h", | 26 "bookmark_folder_view_controller.h", |
| 29 "bookmark_folder_view_controller.mm", | 27 "bookmark_folder_view_controller.mm", |
| 30 "bookmark_home_handset_view_controller.h", | 28 "bookmark_home_handset_view_controller.h", |
| 31 "bookmark_home_handset_view_controller.mm", | 29 "bookmark_home_handset_view_controller.mm", |
| 32 "bookmark_home_primary_view.h", | 30 "bookmark_home_primary_view.h", |
| 33 "bookmark_home_tablet_ntp_controller.h", | 31 "bookmark_home_tablet_ntp_controller.h", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 "resources/bookmark_white_edit@2x.png", | 243 "resources/bookmark_white_edit@2x.png", |
| 246 "resources/bookmark_white_edit@3x.png", | 244 "resources/bookmark_white_edit@3x.png", |
| 247 "resources/bookmark_white_move.png", | 245 "resources/bookmark_white_move.png", |
| 248 "resources/bookmark_white_move@2x.png", | 246 "resources/bookmark_white_move@2x.png", |
| 249 "resources/bookmark_white_move@3x.png", | 247 "resources/bookmark_white_move@3x.png", |
| 250 ] | 248 ] |
| 251 outputs = [ | 249 outputs = [ |
| 252 "{{bundle_resources_dir}}/{{source_file_part}}", | 250 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 253 ] | 251 ] |
| 254 } | 252 } |
| OLD | NEW |