| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 "//components/bookmarks/test", | 135 "//components/bookmarks/test", |
| 136 "//ios/chrome/browser", | 136 "//ios/chrome/browser", |
| 137 "//ios/chrome/browser/bookmarks", | 137 "//ios/chrome/browser/bookmarks", |
| 138 "//ios/chrome/browser/browser_state:test_support", | 138 "//ios/chrome/browser/browser_state:test_support", |
| 139 "//ios/web:test_support", | 139 "//ios/web:test_support", |
| 140 "//testing/gtest", | 140 "//testing/gtest", |
| 141 ] | 141 ] |
| 142 } | 142 } |
| 143 | 143 |
| 144 source_set("unit_tests") { | 144 source_set("unit_tests") { |
| 145 configs += [ "//build/config/compiler:enable_arc" ] |
| 145 testonly = true | 146 testonly = true |
| 146 sources = [ | 147 sources = [ |
| 147 "bookmark_home_view_controller_unittest.mm", | 148 "bookmark_home_view_controller_unittest.mm", |
| 148 "bookmark_ios_unittest.mm", | 149 "bookmark_ios_unittest.mm", |
| 149 "bookmark_position_cache_unittest.mm", | 150 "bookmark_position_cache_unittest.mm", |
| 150 ] | 151 ] |
| 151 public_deps = [ | 152 public_deps = [ |
| 152 ":unit_tests_arc", | 153 ":unit_tests_arc", |
| 153 ] | 154 ] |
| 154 deps = [ | 155 deps = [ |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 "resources/bookmark_white_edit@2x.png", | 263 "resources/bookmark_white_edit@2x.png", |
| 263 "resources/bookmark_white_edit@3x.png", | 264 "resources/bookmark_white_edit@3x.png", |
| 264 "resources/bookmark_white_move.png", | 265 "resources/bookmark_white_move.png", |
| 265 "resources/bookmark_white_move@2x.png", | 266 "resources/bookmark_white_move@2x.png", |
| 266 "resources/bookmark_white_move@3x.png", | 267 "resources/bookmark_white_move@3x.png", |
| 267 ] | 268 ] |
| 268 outputs = [ | 269 outputs = [ |
| 269 "{{bundle_resources_dir}}/{{source_file_part}}", | 270 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 270 ] | 271 ] |
| 271 } | 272 } |
| OLD | NEW |