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

Unified Diff: components/printing/renderer/BUILD.gn

Issue 811563008: Moving files from //chrome to //components/printing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit fix Created 5 years, 11 months 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/printing/renderer/BUILD.gn
diff --git a/components/printing/renderer/BUILD.gn b/components/printing/renderer/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..d6c82d99d6f71cc060780f8dff885e3e2347205a
--- /dev/null
+++ b/components/printing/renderer/BUILD.gn
@@ -0,0 +1,31 @@
+# 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.
+
+static_library("printing_renderer") {
+ sources = [
+ "print_web_view_helper.cc",
+ "print_web_view_helper.h",
+ "print_web_view_helper_android.cc",
+ "print_web_view_helper_linux.cc",
+ "print_web_view_helper_mac.mm",
+ "print_web_view_helper_pdf_win.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//components/resources",
+ "//content/public/common",
+ "//content/public/renderer",
+ "//net",
+ "//printing",
+ "//third_party/WebKit/public:blink",
+ "//ui/base",
+ "//components/printing/common:printing_common",
+ ]
+
+ if (is_win) {
+ # TODO(dgn): crbug.com/167187 fix size_t to int truncations.
+ cflags = [ "/wd4267" ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698