| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "bookmark_utils_ios_unittest.mm", | 137 "bookmark_utils_ios_unittest.mm", |
| 138 ] | 138 ] |
| 139 deps = [ | 139 deps = [ |
| 140 ":bookmarks", | 140 ":bookmarks", |
| 141 "//base", | 141 "//base", |
| 142 "//components/bookmarks/browser", | 142 "//components/bookmarks/browser", |
| 143 "//components/bookmarks/test", | 143 "//components/bookmarks/test", |
| 144 "//ios/chrome/browser", | 144 "//ios/chrome/browser", |
| 145 "//ios/chrome/browser/bookmarks", | 145 "//ios/chrome/browser/bookmarks", |
| 146 "//ios/chrome/browser/browser_state:test_support", | 146 "//ios/chrome/browser/browser_state:test_support", |
| 147 "//ios/web:test_support", | 147 "//ios/web/public/test", |
| 148 "//testing/gtest", | 148 "//testing/gtest", |
| 149 ] | 149 ] |
| 150 } | 150 } |
| 151 | 151 |
| 152 source_set("eg_tests") { | 152 source_set("eg_tests") { |
| 153 configs += [ "//build/config/compiler:enable_arc" ] | 153 configs += [ "//build/config/compiler:enable_arc" ] |
| 154 testonly = true | 154 testonly = true |
| 155 sources = [ | 155 sources = [ |
| 156 "bookmarks_egtest.mm", | 156 "bookmarks_egtest.mm", |
| 157 ] | 157 ] |
| 158 deps = [ | 158 deps = [ |
| 159 "//base", | 159 "//base", |
| 160 "//components/bookmarks/browser", | 160 "//components/bookmarks/browser", |
| 161 "//components/prefs", | 161 "//components/prefs", |
| 162 "//components/strings", | 162 "//components/strings", |
| 163 "//ios/chrome/app/strings", | 163 "//ios/chrome/app/strings", |
| 164 "//ios/chrome/browser", | 164 "//ios/chrome/browser", |
| 165 "//ios/chrome/browser/bookmarks", | 165 "//ios/chrome/browser/bookmarks", |
| 166 "//ios/chrome/browser/bookmarks:bookmarks_utils", | 166 "//ios/chrome/browser/bookmarks:bookmarks_utils", |
| 167 "//ios/chrome/browser/browser_state", | 167 "//ios/chrome/browser/browser_state", |
| 168 "//ios/chrome/browser/ui", | 168 "//ios/chrome/browser/ui", |
| 169 "//ios/chrome/browser/ui/commands", | 169 "//ios/chrome/browser/ui/commands", |
| 170 "//ios/chrome/browser/ui/toolbar", | 170 "//ios/chrome/browser/ui/toolbar", |
| 171 "//ios/chrome/browser/ui/tools_menu", | 171 "//ios/chrome/browser/ui/tools_menu", |
| 172 "//ios/chrome/test/app:test_support", | 172 "//ios/chrome/test/app:test_support", |
| 173 "//ios/chrome/test/earl_grey:test_support", | 173 "//ios/chrome/test/earl_grey:test_support", |
| 174 "//ios/public/provider/chrome/browser/signin:test_support", | 174 "//ios/public/provider/chrome/browser/signin:test_support", |
| 175 "//ios/testing:ios_test_support", | 175 "//ios/testing:ios_test_support", |
| 176 "//ios/third_party/earl_grey", | 176 "//ios/third_party/earl_grey", |
| 177 "//ios/web:test_support", | 177 "//ios/web/public/test/http_server", |
| 178 "//ui/base", | 178 "//ui/base", |
| 179 "//url", | 179 "//url", |
| 180 ] | 180 ] |
| 181 libs = [ | 181 libs = [ |
| 182 "UIKit.framework", | 182 "UIKit.framework", |
| 183 "XCTest.framework", | 183 "XCTest.framework", |
| 184 ] | 184 ] |
| 185 } | 185 } |
| 186 | 186 |
| 187 bundle_data("resources") { | 187 bundle_data("resources") { |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 "resources/bookmark_white_edit@2x.png", | 247 "resources/bookmark_white_edit@2x.png", |
| 248 "resources/bookmark_white_edit@3x.png", | 248 "resources/bookmark_white_edit@3x.png", |
| 249 "resources/bookmark_white_move.png", | 249 "resources/bookmark_white_move.png", |
| 250 "resources/bookmark_white_move@2x.png", | 250 "resources/bookmark_white_move@2x.png", |
| 251 "resources/bookmark_white_move@3x.png", | 251 "resources/bookmark_white_move@3x.png", |
| 252 ] | 252 ] |
| 253 outputs = [ | 253 outputs = [ |
| 254 "{{bundle_resources_dir}}/{{source_file_part}}", | 254 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 255 ] | 255 ] |
| 256 } | 256 } |
| OLD | NEW |