mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
29 lines
912 B
Plaintext
29 lines
912 B
Plaintext
# Copyright 2018 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("cells") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"popup_menu_footer_item.h",
|
|
"popup_menu_footer_item.mm",
|
|
"popup_menu_item.h",
|
|
"popup_menu_navigation_item.h",
|
|
"popup_menu_navigation_item.mm",
|
|
"popup_menu_tools_item.h",
|
|
"popup_menu_tools_item.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//ios/chrome/browser/ui",
|
|
"//ios/chrome/browser/ui/favicon/resources:default_favicon",
|
|
"//ios/chrome/browser/ui/popup_menu:constants",
|
|
"//ios/chrome/browser/ui/reading_list:reading_list_ui",
|
|
"//ios/chrome/browser/ui/table_view:styler",
|
|
"//ios/chrome/browser/ui/table_view/cells",
|
|
"//ios/chrome/common",
|
|
"//ios/chrome/common/ui_util",
|
|
]
|
|
libs = [ "UIKit.framework" ]
|
|
}
|