| 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", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "bookmark_navigation_controller.h", | 49 "bookmark_navigation_controller.h", |
| 50 "bookmark_navigation_controller.mm", | 50 "bookmark_navigation_controller.mm", |
| 51 "bookmark_panel_view.h", | 51 "bookmark_panel_view.h", |
| 52 "bookmark_panel_view.mm", | 52 "bookmark_panel_view.mm", |
| 53 "bookmark_position_cache.h", | 53 "bookmark_position_cache.h", |
| 54 "bookmark_position_cache.mm", | 54 "bookmark_position_cache.mm", |
| 55 "bookmark_promo_cell.h", | 55 "bookmark_promo_cell.h", |
| 56 "bookmark_promo_cell.mm", | 56 "bookmark_promo_cell.mm", |
| 57 "bookmark_promo_controller.h", | 57 "bookmark_promo_controller.h", |
| 58 "bookmark_promo_controller.mm", | 58 "bookmark_promo_controller.mm", |
| 59 "bookmark_signin_promo_cell.h", |
| 60 "bookmark_signin_promo_cell.mm", |
| 59 "bookmark_utils_ios.h", | 61 "bookmark_utils_ios.h", |
| 60 "bookmark_utils_ios.mm", | 62 "bookmark_utils_ios.mm", |
| 61 "undo_manager_bridge_observer.h", | 63 "undo_manager_bridge_observer.h", |
| 62 "undo_manager_bridge_observer.mm", | 64 "undo_manager_bridge_observer.mm", |
| 63 "undo_manager_wrapper.h", | 65 "undo_manager_wrapper.h", |
| 64 "undo_manager_wrapper.mm", | 66 "undo_manager_wrapper.mm", |
| 65 ] | 67 ] |
| 66 deps = [ | 68 deps = [ |
| 67 ":resources", | 69 ":resources", |
| 68 "//base", | 70 "//base", |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "resources/bookmark_white_edit@2x.png", | 245 "resources/bookmark_white_edit@2x.png", |
| 244 "resources/bookmark_white_edit@3x.png", | 246 "resources/bookmark_white_edit@3x.png", |
| 245 "resources/bookmark_white_move.png", | 247 "resources/bookmark_white_move.png", |
| 246 "resources/bookmark_white_move@2x.png", | 248 "resources/bookmark_white_move@2x.png", |
| 247 "resources/bookmark_white_move@3x.png", | 249 "resources/bookmark_white_move@3x.png", |
| 248 ] | 250 ] |
| 249 outputs = [ | 251 outputs = [ |
| 250 "{{bundle_resources_dir}}/{{source_file_part}}", | 252 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 251 ] | 253 ] |
| 252 } | 254 } |
| OLD | NEW |