Chromium Code Reviews| 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 import("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 | 6 |
| 7 source_set("ui") { | 7 source_set("ui") { |
| 8 sources = [ | 8 sources = [ |
| 9 "UIView+SizeClassSupport.h", | 9 "UIView+SizeClassSupport.h", |
| 10 "UIView+SizeClassSupport.mm", | 10 "UIView+SizeClassSupport.mm", |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 489 testonly = true | 489 testonly = true |
| 490 sources = [ | 490 sources = [ |
| 491 "//ios/chrome/test/data/testbadpass.pkpass", | 491 "//ios/chrome/test/data/testbadpass.pkpass", |
| 492 "//ios/chrome/test/data/testpass.pkpass", | 492 "//ios/chrome/test/data/testpass.pkpass", |
| 493 ] | 493 ] |
| 494 outputs = [ | 494 outputs = [ |
| 495 "{{bundle_resources_dir}}/ios/chrome/test/data/{{source_file_part}}", | 495 "{{bundle_resources_dir}}/ios/chrome/test/data/{{source_file_part}}", |
| 496 ] | 496 ] |
| 497 } | 497 } |
| 498 | 498 |
| 499 # These tests use external URLs and hit network. They will fail if the network | |
| 500 # is unavailable. Reference to crbug.com/694662. | |
| 501 source_set("external_url_eg_tests") { | |
| 502 configs += [ "//build/config/compiler:enable_arc" ] | |
| 503 testonly = true | |
| 504 sources = [ | |
| 505 "error_page_egtest.mm", | |
|
Eugene But (OOO till 7-30)
2017/04/21 00:17:27
s/error_page_egtest/external_url_error_page_egtest
| |
| 506 ] | |
| 507 deps = [ | |
| 508 "//components/strings", | |
| 509 "//ios/chrome/test/app:test_support", | |
| 510 "//ios/chrome/test/earl_grey:test_support", | |
| 511 "//ios/web:earl_grey_test_support", | |
| 512 "//ios/web:test_support", | |
| 513 "//ui/base", | |
| 514 ] | |
| 515 libs = [ "XCTest.framework" ] | |
| 516 } | |
| 517 | |
| 499 source_set("eg_tests") { | 518 source_set("eg_tests") { |
| 500 configs += [ "//build/config/compiler:enable_arc" ] | 519 configs += [ "//build/config/compiler:enable_arc" ] |
| 501 testonly = true | 520 testonly = true |
| 502 sources = [ | 521 sources = [ |
| 503 "browser_view_controller_egtest.mm", | 522 "browser_view_controller_egtest.mm", |
| 504 "error_page_egtest.mm", | |
| 505 "fullscreen_egtest.mm", | 523 "fullscreen_egtest.mm", |
| 506 "keyboard_commands_egtest.mm", | 524 "keyboard_commands_egtest.mm", |
| 507 ] | 525 ] |
| 508 deps = [ | 526 deps = [ |
| 509 ":ui", | 527 ":ui", |
| 510 ":ui_internal", | 528 ":ui_internal", |
| 511 "//base", | 529 "//base", |
| 512 "//components/strings", | 530 "//components/strings", |
| 513 "//ios/chrome/app/strings", | 531 "//ios/chrome/app/strings", |
| 514 "//ios/chrome/browser/ui/commands", | 532 "//ios/chrome/browser/ui/commands", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 552 "//ios/chrome/browser/web_state_list", | 570 "//ios/chrome/browser/web_state_list", |
| 553 "//ios/chrome/browser/web_state_list:test_support", | 571 "//ios/chrome/browser/web_state_list:test_support", |
| 554 "//ios/chrome/test/base:perf_test_support", | 572 "//ios/chrome/test/base:perf_test_support", |
| 555 "//ios/web:test_support", | 573 "//ios/web:test_support", |
| 556 "//testing/gtest", | 574 "//testing/gtest", |
| 557 "//third_party/ocmock", | 575 "//third_party/ocmock", |
| 558 "//ui/base:test_support", | 576 "//ui/base:test_support", |
| 559 ] | 577 ] |
| 560 libs = [ "UIKit.framework" ] | 578 libs = [ "UIKit.framework" ] |
| 561 } | 579 } |
| OLD | NEW |