OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 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 # GYP version: components/dom_distiller.gypi:dom_distiller_content_renderer |
| 6 static_library("renderer") { |
| 7 sources = [ |
| 8 "distillability_agent.cc", |
| 9 "distillability_agent.h", |
| 10 "distiller_js_render_frame_observer.cc", |
| 11 "distiller_js_render_frame_observer.h", |
| 12 "distiller_native_javascript.cc", |
| 13 "distiller_native_javascript.h", |
| 14 "distiller_page_notifier_service_impl.cc", |
| 15 "distiller_page_notifier_service_impl.h", |
| 16 ] |
| 17 |
| 18 public_deps = [ |
| 19 "//components/dom_distiller/core/proto", |
| 20 ] |
| 21 deps = [ |
| 22 "//base", |
| 23 "//components/dom_distiller/content/common", |
| 24 "//components/dom_distiller/content/common:mojo_bindings", |
| 25 "//components/dom_distiller/core", |
| 26 "//content/public/common", |
| 27 "//content/public/renderer", |
| 28 "//gin", |
| 29 "//mojo/environment:chromium", |
| 30 "//mojo/public/cpp/bindings", |
| 31 "//skia", |
| 32 "//third_party/WebKit/public:blink_headers", |
| 33 "//v8", |
| 34 ] |
| 35 } |
OLD | NEW |