Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Side by Side Diff: components/dom_distiller/content/renderer/BUILD.gn

Issue 1487433002: Add more components to "gn check", work on dom_distiller. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698