| 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("dom_distiller") { |
| 6 sources = [ |
| 7 "distiller_viewer.cc", |
| 8 "distiller_viewer.h", |
| 9 "dom_distiller_service_factory.cc", |
| 10 "dom_distiller_service_factory.h", |
| 11 ] |
| 12 deps = [ |
| 13 "//base", |
| 14 "//components/dom_distiller/core", |
| 15 "//components/dom_distiller/ios", |
| 16 "//components/keyed_service/core", |
| 17 "//components/keyed_service/ios", |
| 18 "//components/leveldb_proto", |
| 19 "//ios/chrome/browser/browser_state", |
| 20 "//ios/web", |
| 21 "//ui/gfx", |
| 22 ] |
| 23 public_deps = [ |
| 24 "//components/dom_distiller/core", |
| 25 ] |
| 26 } |
| OLD | NEW |