| OLD | NEW |
| (Empty) |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("views") { | |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | |
| 7 sources = [ | |
| 8 "disclosure_view.h", | |
| 9 "disclosure_view.mm", | |
| 10 "generic_section_header_view.h", | |
| 11 "generic_section_header_view.mm", | |
| 12 "header_of_collapsable_section_protocol.h", | |
| 13 "panel_bar_view.h", | |
| 14 "panel_bar_view.mm", | |
| 15 "session_section_header_view.h", | |
| 16 "session_section_header_view.mm", | |
| 17 "session_tab_data_view.h", | |
| 18 "session_tab_data_view.mm", | |
| 19 "show_full_history_view.h", | |
| 20 "show_full_history_view.mm", | |
| 21 "signed_in_sync_in_progress_view.h", | |
| 22 "signed_in_sync_in_progress_view.mm", | |
| 23 "signed_in_sync_off_view.h", | |
| 24 "signed_in_sync_off_view.mm", | |
| 25 "signed_in_sync_on_no_sessions_view.h", | |
| 26 "signed_in_sync_on_no_sessions_view.mm", | |
| 27 "signed_out_view.h", | |
| 28 "signed_out_view.mm", | |
| 29 "spacers_view.h", | |
| 30 "spacers_view.mm", | |
| 31 "views_utils.h", | |
| 32 "views_utils.mm", | |
| 33 ] | |
| 34 deps = [ | |
| 35 "//base", | |
| 36 "//components/resources", | |
| 37 "//components/sessions", | |
| 38 "//components/strings", | |
| 39 "//ios/chrome/app/strings", | |
| 40 "//ios/chrome/browser/favicon", | |
| 41 "//ios/chrome/browser/ui", | |
| 42 "//ios/chrome/browser/ui/commands", | |
| 43 "//ios/chrome/browser/ui/fancy_ui", | |
| 44 "//ios/chrome/browser/ui/material_components", | |
| 45 "//ios/chrome/browser/ui/sync", | |
| 46 "//ios/chrome/browser/ui/tab_switcher:utils", | |
| 47 "//ios/third_party/material_components_ios", | |
| 48 "//ios/third_party/material_roboto_font_loader_ios", | |
| 49 "//ui/base", | |
| 50 ] | |
| 51 libs = [ "UIKit.framework" ] | |
| 52 } | |
| OLD | NEW |