| 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 sources = [ | 6 sources = [ |
| 7 "bookmark_collection_cells.h", | 7 "bookmark_collection_cells.h", |
| 8 "bookmark_collection_cells.mm", | 8 "bookmark_collection_cells.mm", |
| 9 "bookmark_collection_view.h", | 9 "bookmark_collection_view.h", |
| 10 "bookmark_collection_view.mm", | 10 "bookmark_collection_view.mm", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 "//components/bookmarks/test", | 136 "//components/bookmarks/test", |
| 137 "//ios/chrome/browser", | 137 "//ios/chrome/browser", |
| 138 "//ios/chrome/browser/bookmarks", | 138 "//ios/chrome/browser/bookmarks", |
| 139 "//ios/chrome/browser/browser_state:test_support", | 139 "//ios/chrome/browser/browser_state:test_support", |
| 140 "//ios/web:test_support", | 140 "//ios/web:test_support", |
| 141 "//testing/gtest", | 141 "//testing/gtest", |
| 142 ] | 142 ] |
| 143 } | 143 } |
| 144 | 144 |
| 145 source_set("eg_tests") { | 145 source_set("eg_tests") { |
| 146 configs += [ "//build/config/compiler:enable_arc" ] |
| 146 testonly = true | 147 testonly = true |
| 147 sources = [ | 148 sources = [ |
| 148 "bookmarks_egtest.mm", | 149 "bookmarks_egtest.mm", |
| 149 ] | 150 ] |
| 150 deps = [ | 151 deps = [ |
| 151 "//base", | 152 "//base", |
| 152 "//components/bookmarks/browser", | 153 "//components/bookmarks/browser", |
| 153 "//components/prefs", | 154 "//components/prefs", |
| 154 "//components/strings", | 155 "//components/strings", |
| 155 "//ios/chrome/app/strings", | 156 "//ios/chrome/app/strings", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "resources/bookmark_white_edit@2x.png", | 240 "resources/bookmark_white_edit@2x.png", |
| 240 "resources/bookmark_white_edit@3x.png", | 241 "resources/bookmark_white_edit@3x.png", |
| 241 "resources/bookmark_white_move.png", | 242 "resources/bookmark_white_move.png", |
| 242 "resources/bookmark_white_move@2x.png", | 243 "resources/bookmark_white_move@2x.png", |
| 243 "resources/bookmark_white_move@3x.png", | 244 "resources/bookmark_white_move@3x.png", |
| 244 ] | 245 ] |
| 245 outputs = [ | 246 outputs = [ |
| 246 "{{bundle_resources_dir}}/{{source_file_part}}", | 247 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 247 ] | 248 ] |
| 248 } | 249 } |
| OLD | NEW |