mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
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 = [
|
|
"overlay_coordinator_test.h",
|
|
"overlay_coordinator_test.mm",
|
|
"test_overlay_coordinator.h",
|
|
"test_overlay_coordinator.mm",
|
|
"test_overlay_parent_coordinator.h",
|
|
"test_overlay_parent_coordinator.mm",
|
|
"test_overlay_queue.h",
|
|
"test_overlay_queue.mm",
|
|
"test_overlay_queue_manager_observer.h",
|
|
"test_overlay_queue_manager_observer.mm",
|
|
"test_overlay_queue_observer.h",
|
|
"test_overlay_queue_observer.mm",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/ui/browser_list",
|
|
"//ios/chrome/browser/ui/commands",
|
|
"//ios/chrome/browser/ui/coordinators",
|
|
"//ios/chrome/browser/ui/coordinators:test_support",
|
|
"//ios/chrome/browser/ui/overlays",
|
|
"//ios/chrome/browser/ui/overlays:overlays_internal",
|
|
"//ios/chrome/browser/web_state_list",
|
|
"//ios/web",
|
|
"//testing/gtest",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
}
|