mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-04 19:26:09 +03:00
41 lines
1.0 KiB
Plaintext
41 lines
1.0 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("recent_tabs") {
|
|
sources = [
|
|
"recent_tabs_coordinator.h",
|
|
"recent_tabs_coordinator.mm",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
|
deps = [
|
|
"//components/browser_sync",
|
|
"//components/sessions",
|
|
"//components/sync_sessions",
|
|
"//ios/chrome/browser/sessions",
|
|
"//ios/chrome/browser/sync",
|
|
"//ios/chrome/browser/ui",
|
|
"//ios/chrome/browser/ui/browser_list",
|
|
"//ios/chrome/browser/ui/coordinators",
|
|
"//ios/chrome/browser/ui/ntp/recent_tabs",
|
|
"//ios/clean/chrome/browser/ui",
|
|
"//ios/clean/chrome/browser/ui/adaptor",
|
|
"//ios/clean/chrome/browser/ui/commands",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
sources = [
|
|
"recent_tabs_coordinator_unittest.mm",
|
|
]
|
|
|
|
deps = [
|
|
":recent_tabs",
|
|
"//testing/gtest",
|
|
]
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
}
|