| Index: ios/showcase/test/BUILD.gn
|
| diff --git a/ios/showcase/test/BUILD.gn b/ios/showcase/test/BUILD.gn
|
| index f05c0ecb70fcb7aa4b2c29ccb7a6428d096851d9..a38fe5f884be8ecdc59db39bb51a23a3550d6727 100644
|
| --- a/ios/showcase/test/BUILD.gn
|
| +++ b/ios/showcase/test/BUILD.gn
|
| @@ -2,9 +2,18 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -# This empty target is there to help with upstreaming by removing a manual
|
| -# step from the process (updating the //ios:all target). It will be changed
|
| -# to a real target as part of upstreaming.
|
| -group("all_tests") {
|
| +source_set("test") {
|
| testonly = true
|
| + sources = [
|
| + "showcase_test_case.h",
|
| + "showcase_test_case.mm",
|
| + ]
|
| + deps = [
|
| + "//base",
|
| + "//ios/third_party/earl_grey",
|
| + ]
|
| + public_deps = [
|
| + "//build/config/ios:xctest",
|
| + ]
|
| + configs += [ "//build/config/compiler:enable_arc" ]
|
| }
|
|
|