mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
39 lines
1.1 KiB
Plaintext
39 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("public") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"fakebox_focuser.h",
|
|
"omnibox_focuser.h",
|
|
"primary_toolbar_coordinator.h",
|
|
"side_swipe_toolbar_interacting.h",
|
|
"side_swipe_toolbar_snapshot_providing.h",
|
|
"toolbar_coordinating.h",
|
|
]
|
|
deps = [
|
|
":toolbar_base_feature",
|
|
"//base",
|
|
"//ios/chrome/browser/ui",
|
|
"//ios/chrome/browser/ui/activity_services/requirements",
|
|
"//ios/chrome/browser/ui/bubble",
|
|
"//ios/chrome/browser/ui/fullscreen:ui",
|
|
"//ios/chrome/browser/ui/ntp",
|
|
"//ios/chrome/browser/ui/qr_scanner/requirements",
|
|
"//ios/chrome/browser/ui/tools_menu/public",
|
|
"//ios/public/provider/chrome/browser/voice",
|
|
]
|
|
}
|
|
|
|
source_set("toolbar_base_feature") {
|
|
sources = [
|
|
"toolbar_controller_base_feature.h",
|
|
"toolbar_controller_base_feature.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
]
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
}
|