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