mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 08:16:09 +03:00
32 lines
939 B
Plaintext
32 lines
939 B
Plaintext
# Copyright 2018 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("eg_tests") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
sources = [
|
|
"automation_action.h",
|
|
"automation_action.mm",
|
|
"automation_egtest.mm",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//components/strings",
|
|
"//ios/chrome/app/strings",
|
|
"//ios/chrome/browser/infobars",
|
|
"//ios/chrome/browser/ui:ui_util",
|
|
"//ios/chrome/browser/ui/infobars:test_support",
|
|
"//ios/chrome/browser/ui/toolbar/buttons",
|
|
"//ios/chrome/browser/ui/toolbar/public",
|
|
"//ios/chrome/browser/ui/util",
|
|
"//ios/chrome/test/app:test_support",
|
|
"//ios/chrome/test/earl_grey:test_support",
|
|
"//ios/testing/earl_grey:earl_grey_support",
|
|
"//ios/web:earl_grey_test_support",
|
|
"//ui/base",
|
|
]
|
|
libs = [ "XCTest.framework" ]
|
|
}
|