mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
26 lines
696 B
Plaintext
26 lines
696 B
Plaintext
# Copyright 2017 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 = [
|
|
"main_content_broadcast_test_util.h",
|
|
"main_content_broadcast_test_util.mm",
|
|
"test_main_content_ui_observer.h",
|
|
"test_main_content_ui_observer.mm",
|
|
"test_main_content_ui_state.h",
|
|
"test_main_content_ui_state.mm",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
deps = [
|
|
"//ios/chrome/browser/ui:ui_util",
|
|
"//ios/chrome/browser/ui/broadcaster",
|
|
"//ios/chrome/browser/ui/main_content:main_content_ui",
|
|
"//testing/gtest",
|
|
]
|
|
}
|