| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 static_library("renderer") { | 5 static_library("renderer") { |
| 6 sources = [ | 6 sources = [ |
| 7 "distillability_agent.cc", | 7 "distillability_agent.cc", |
| 8 "distillability_agent.h", | 8 "distillability_agent.h", |
| 9 "distiller_js_render_frame_observer.cc", | 9 "distiller_js_render_frame_observer.cc", |
| 10 "distiller_js_render_frame_observer.h", | 10 "distiller_js_render_frame_observer.h", |
| 11 "distiller_native_javascript.cc", | 11 "distiller_native_javascript.cc", |
| 12 "distiller_native_javascript.h", | 12 "distiller_native_javascript.h", |
| 13 "distiller_page_notifier_service_impl.cc", | 13 "distiller_page_notifier_service_impl.cc", |
| 14 "distiller_page_notifier_service_impl.h", | 14 "distiller_page_notifier_service_impl.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 public_deps = [ | 17 public_deps = [ |
| 18 "//components/dom_distiller/core/proto", | 18 "//components/dom_distiller/core/proto", |
| 19 ] | 19 ] |
| 20 deps = [ | 20 deps = [ |
| 21 "//base", | 21 "//base", |
| 22 "//components/dom_distiller/content/common:mojo_bindings", | 22 "//components/dom_distiller/content/common:mojo_bindings", |
| 23 "//components/dom_distiller/core", | 23 "//components/dom_distiller/core", |
| 24 "//content/public/common", | 24 "//content/public/common", |
| 25 "//content/public/renderer", | 25 "//content/public/renderer", |
| 26 "//gin", | 26 "//gin", |
| 27 "//mojo/public/cpp/bindings", | 27 "//mojo/public/cpp/bindings", |
| 28 "//services/shell/public/cpp", | 28 "//services/service_manager/public/cpp", |
| 29 "//skia", | 29 "//skia", |
| 30 "//third_party/WebKit/public:blink_headers", | 30 "//third_party/WebKit/public:blink_headers", |
| 31 "//v8", | 31 "//v8", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| OLD | NEW |