| 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 bundle_data("resources") { | 5 bundle_data("resources") { |
| 6 sources = [ | 6 sources = [ |
| 7 "resources/app_icon_placeholder.png", | 7 "resources/app_icon_placeholder.png", |
| 8 "resources/app_icon_placeholder@2x.png", | 8 "resources/app_icon_placeholder@2x.png", |
| 9 "resources/app_icon_placeholder@3x.png", | 9 "resources/app_icon_placeholder@3x.png", |
| 10 "resources/encryption_error.png", | 10 "resources/encryption_error.png", |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 "//ios/chrome/browser/sync", | 227 "//ios/chrome/browser/sync", |
| 228 "//ios/chrome/browser/sync:test_support", | 228 "//ios/chrome/browser/sync:test_support", |
| 229 "//ios/chrome/browser/ui/collection_view:test_support", | 229 "//ios/chrome/browser/ui/collection_view:test_support", |
| 230 "//ios/public/provider/chrome/browser/signin:test_support", | 230 "//ios/public/provider/chrome/browser/signin:test_support", |
| 231 "//ios/web:test_support", | 231 "//ios/web:test_support", |
| 232 "//testing/gtest", | 232 "//testing/gtest", |
| 233 ] | 233 ] |
| 234 } | 234 } |
| 235 | 235 |
| 236 source_set("unit_tests") { | 236 source_set("unit_tests") { |
| 237 configs += [ "//build/config/compiler:enable_arc" ] |
| 237 testonly = true | 238 testonly = true |
| 238 sources = [ | 239 sources = [ |
| 239 "about_chrome_collection_view_controller_unittest.mm", | 240 "about_chrome_collection_view_controller_unittest.mm", |
| 240 "autofill_collection_view_controller_unittest.mm", | 241 "autofill_collection_view_controller_unittest.mm", |
| 241 "autofill_profile_edit_collection_view_controller_unittest.mm", | 242 "autofill_profile_edit_collection_view_controller_unittest.mm", |
| 242 "bandwidth_management_collection_view_controller_unittest.mm", | 243 "bandwidth_management_collection_view_controller_unittest.mm", |
| 243 "block_popups_collection_view_controller_unittest.mm", | 244 "block_popups_collection_view_controller_unittest.mm", |
| 244 "clear_browsing_data_collection_view_controller_unittest.mm", | 245 "clear_browsing_data_collection_view_controller_unittest.mm", |
| 245 "content_settings_collection_view_controller_unittest.mm", | 246 "content_settings_collection_view_controller_unittest.mm", |
| 246 "contextual_search_collection_view_controller_unittest.mm", | 247 "contextual_search_collection_view_controller_unittest.mm", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 "//ios/web:test_support", | 373 "//ios/web:test_support", |
| 373 "//net", | 374 "//net", |
| 374 "//ui/base", | 375 "//ui/base", |
| 375 "//url", | 376 "//url", |
| 376 ] | 377 ] |
| 377 libs = [ | 378 libs = [ |
| 378 "UIKit.framework", | 379 "UIKit.framework", |
| 379 "XCTest.framework", | 380 "XCTest.framework", |
| 380 ] | 381 ] |
| 381 } | 382 } |
| OLD | NEW |