mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-04 19:26:09 +03:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# Copyright 2016 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("tab_strip") {
|
|
sources = [
|
|
"tab_strip_coordinator.h",
|
|
"tab_strip_coordinator.mm",
|
|
]
|
|
deps = [
|
|
":tab_strip_ui",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/ui/browser_list",
|
|
"//ios/chrome/browser/ui/commands",
|
|
"//ios/chrome/browser/ui/coordinators",
|
|
"//ios/chrome/browser/web_state_list",
|
|
"//ios/clean/chrome/browser/ui/commands",
|
|
"//ios/clean/chrome/browser/ui/tab_collection",
|
|
"//ios/web",
|
|
]
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
}
|
|
|
|
source_set("tab_strip_ui") {
|
|
sources = [
|
|
"tab_strip_toolbar.h",
|
|
"tab_strip_toolbar.mm",
|
|
"tab_strip_view_controller.h",
|
|
"tab_strip_view_controller.mm",
|
|
]
|
|
deps = [
|
|
"//ios/chrome/browser/ui/commands",
|
|
"//ios/chrome/browser/ui/icons",
|
|
"//ios/clean/chrome/browser/ui/actions",
|
|
"//ios/clean/chrome/browser/ui/commands",
|
|
"//ios/clean/chrome/browser/ui/tab_collection:tab_collection_ui",
|
|
]
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
}
|