naiveproxy/ios/testing/earl_grey/BUILD.gn
2018-08-11 05:35:24 +00:00

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" ]
}