mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
29 lines
695 B
Plaintext
29 lines
695 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.
|
||
|
|
||
|
config("earl_grey_support_config") {
|
||
|
include_dirs = [ "." ]
|
||
|
visibility = [ ":earl_grey_support" ]
|
||
|
}
|
||
|
|
||
|
source_set("earl_grey_support") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
testonly = true
|
||
|
|
||
|
deps = [
|
||
|
"//base/test:test_support",
|
||
|
"//ios/testing:ios_test_support",
|
||
|
"//ios/third_party/earl_grey:earl_grey+link",
|
||
|
]
|
||
|
|
||
|
sources = [
|
||
|
"disabled_test_macros.h",
|
||
|
"matchers.h",
|
||
|
"matchers.mm",
|
||
|
]
|
||
|
|
||
|
public_configs = [ ":earl_grey_support_config" ]
|
||
|
configs += [ ":earl_grey_support_config" ]
|
||
|
}
|