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

Unified 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, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: components/dom_distiller/content/renderer/BUILD.gn
diff --git a/components/dom_distiller/content/renderer/BUILD.gn b/components/dom_distiller/content/renderer/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f4e1f1e5e7162eae173496dcf50c70d8db503166
--- /dev/null
+++ b/components/dom_distiller/content/renderer/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2015 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.
+
+# GYP version: components/dom_distiller.gypi:dom_distiller_content_renderer
+static_library("renderer") {
+ sources = [
+ "distillability_agent.cc",
+ "distillability_agent.h",
+ "distiller_js_render_frame_observer.cc",
+ "distiller_js_render_frame_observer.h",
+ "distiller_native_javascript.cc",
+ "distiller_native_javascript.h",
+ "distiller_page_notifier_service_impl.cc",
+ "distiller_page_notifier_service_impl.h",
+ ]
+
+ public_deps = [
+ "//components/dom_distiller/core/proto",
+ ]
+ deps = [
+ "//base",
+ "//components/dom_distiller/content/common",
+ "//components/dom_distiller/content/common:mojo_bindings",
+ "//components/dom_distiller/core",
+ "//content/public/common",
+ "//content/public/renderer",
+ "//gin",
+ "//mojo/environment:chromium",
+ "//mojo/public/cpp/bindings",
+ "//skia",
+ "//third_party/WebKit/public:blink_headers",
+ "//v8",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698