| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 "//net:test_support", | 324 "//net:test_support", |
| 325 "//testing/gmock", | 325 "//testing/gmock", |
| 326 "//testing/gtest", | 326 "//testing/gtest", |
| 327 "//third_party/ocmock", | 327 "//third_party/ocmock", |
| 328 "//ui/base", | 328 "//ui/base", |
| 329 "//url", | 329 "//url", |
| 330 ] | 330 ] |
| 331 } | 331 } |
| 332 | 332 |
| 333 source_set("eg_tests") { | 333 source_set("eg_tests") { |
| 334 configs += [ "//build/config/compiler:enable_arc" ] |
| 334 testonly = true | 335 testonly = true |
| 335 sources = [ | 336 sources = [ |
| 336 "accounts_collection_egtest.mm", | 337 "accounts_collection_egtest.mm", |
| 337 "autofill_settings_egtest.mm", | 338 "autofill_settings_egtest.mm", |
| 338 "block_popups_egtest.mm", | 339 "block_popups_egtest.mm", |
| 339 "clear_browsing_data_egtest.mm", | 340 "clear_browsing_data_egtest.mm", |
| 340 "settings_egtest.mm", | 341 "settings_egtest.mm", |
| 341 "translate_ui_egtest.mm", | 342 "translate_ui_egtest.mm", |
| 342 ] | 343 ] |
| 343 | 344 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 371 "//ios/web:test_support", | 372 "//ios/web:test_support", |
| 372 "//net", | 373 "//net", |
| 373 "//ui/base", | 374 "//ui/base", |
| 374 "//url", | 375 "//url", |
| 375 ] | 376 ] |
| 376 libs = [ | 377 libs = [ |
| 377 "UIKit.framework", | 378 "UIKit.framework", |
| 378 "XCTest.framework", | 379 "XCTest.framework", |
| 379 ] | 380 ] |
| 380 } | 381 } |
| OLD | NEW |