mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
27 lines
672 B
Plaintext
27 lines
672 B
Plaintext
# Copyright 2016 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("dom_distiller") {
|
|
sources = [
|
|
"distiller_viewer.cc",
|
|
"distiller_viewer.h",
|
|
"dom_distiller_service_factory.cc",
|
|
"dom_distiller_service_factory.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//components/dom_distiller/ios",
|
|
"//components/keyed_service/core",
|
|
"//components/keyed_service/ios",
|
|
"//components/leveldb_proto",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/web",
|
|
"//ui/gfx",
|
|
"//url",
|
|
]
|
|
public_deps = [
|
|
"//components/dom_distiller/core",
|
|
]
|
|
}
|