| 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("reader_mode") { | |
| 6 sources = [ | |
| 7 "reader_mode_checker.h", | |
| 8 "reader_mode_checker.mm", | |
| 9 "reader_mode_controller.h", | |
| 10 "reader_mode_controller.mm", | |
| 11 "reader_mode_infobar_delegate.h", | |
| 12 "reader_mode_infobar_delegate.mm", | |
| 13 "reader_mode_view.h", | |
| 14 "reader_mode_view.mm", | |
| 15 ] | |
| 16 deps = [ | |
| 17 "//base", | |
| 18 "//components/dom_distiller/core", | |
| 19 "//components/infobars/core", | |
| 20 "//components/resources", | |
| 21 "//ios/chrome/browser/browser_state", | |
| 22 "//ios/chrome/browser/dom_distiller", | |
| 23 "//ios/chrome/browser/infobars", | |
| 24 "//ios/chrome/browser/ui/material_components", | |
| 25 "//ios/third_party/material_components_ios", | |
| 26 "//ios/web", | |
| 27 "//ui/base", | |
| 28 "//url", | |
| 29 ] | |
| 30 libs = [ "UIKit.framework" ] | |
| 31 } | |
| OLD | NEW |