| 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_arc") { | 5 source_set("bookmarks_arc") { |
| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 "CoreGraphics.framework", | 185 "CoreGraphics.framework", |
| 186 "QuartzCore.framework", | 186 "QuartzCore.framework", |
| 187 "UIKit.framework", | 187 "UIKit.framework", |
| 188 ] | 188 ] |
| 189 } | 189 } |
| 190 | 190 |
| 191 source_set("unit_tests_arc") { | 191 source_set("unit_tests_arc") { |
| 192 configs += [ "//build/config/compiler:enable_arc" ] | 192 configs += [ "//build/config/compiler:enable_arc" ] |
| 193 testonly = true | 193 testonly = true |
| 194 sources = [ | 194 sources = [ |
| 195 "bookmark_ios_unittest.h", |
| 195 "bookmark_utils_ios_unittest.mm", | 196 "bookmark_utils_ios_unittest.mm", |
| 196 ] | 197 ] |
| 197 deps = [ | 198 deps = [ |
| 198 ":bookmarks", | 199 ":bookmarks", |
| 199 "//base", | 200 "//base", |
| 200 "//components/bookmarks/browser", | 201 "//components/bookmarks/browser", |
| 201 "//components/bookmarks/test", | 202 "//components/bookmarks/test", |
| 202 "//ios/chrome/browser", | 203 "//ios/chrome/browser", |
| 203 "//ios/chrome/browser/bookmarks", | 204 "//ios/chrome/browser/bookmarks", |
| 204 "//ios/chrome/browser/browser_state:test_support", | 205 "//ios/chrome/browser/browser_state:test_support", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 "resources/bookmark_white_edit@2x.png", | 329 "resources/bookmark_white_edit@2x.png", |
| 329 "resources/bookmark_white_edit@3x.png", | 330 "resources/bookmark_white_edit@3x.png", |
| 330 "resources/bookmark_white_move.png", | 331 "resources/bookmark_white_move.png", |
| 331 "resources/bookmark_white_move@2x.png", | 332 "resources/bookmark_white_move@2x.png", |
| 332 "resources/bookmark_white_move@3x.png", | 333 "resources/bookmark_white_move@3x.png", |
| 333 ] | 334 ] |
| 334 outputs = [ | 335 outputs = [ |
| 335 "{{bundle_resources_dir}}/{{source_file_part}}", | 336 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 336 ] | 337 ] |
| 337 } | 338 } |
| OLD | NEW |