mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
25 lines
621 B
Plaintext
25 lines
621 B
Plaintext
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
source_set("test") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"showcase_eg_utils.h",
|
||
|
"showcase_eg_utils.mm",
|
||
|
"showcase_test_case.h",
|
||
|
"showcase_test_case.mm",
|
||
|
]
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//ios/showcase/core",
|
||
|
"//ios/testing/earl_grey:earl_grey_support",
|
||
|
"//ios/third_party/earl_grey:earl_grey+link",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
public_deps = [
|
||
|
"//build/config/ios:xctest",
|
||
|
]
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
}
|