mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
29 lines
814 B
Plaintext
29 lines
814 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") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
testonly = true
|
||
|
|
||
|
sources = [
|
||
|
"test_toolbar_ui_observer.h",
|
||
|
"test_toolbar_ui_observer.mm",
|
||
|
"toolbar_broadcast_test_util.h",
|
||
|
"toolbar_broadcast_test_util.mm",
|
||
|
"toolbar_test_navigation_manager.h",
|
||
|
"toolbar_test_navigation_manager.mm",
|
||
|
"toolbar_test_web_state.h",
|
||
|
"toolbar_test_web_state.mm",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//ios/chrome/browser/ui:ui_util",
|
||
|
"//ios/chrome/browser/ui/broadcaster",
|
||
|
"//ios/chrome/browser/ui/toolbar",
|
||
|
"//ios/chrome/browser/ui/toolbar:toolbar_ui",
|
||
|
"//ios/web/public/test/fakes",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|