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..1d9eb52fc13463908a6e68c8af99ad1321c2ec43 |
--- /dev/null |
+++ b/components/printing/renderer/BUILD.gn |
@@ -0,0 +1,23 @@ |
+# 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("renderer") { |
Vitaly Buka (NO REVIEWS)
2015/01/05 17:26:07
printing_renderer
dgn
2015/01/05 18:52:52
Done.
|
+ sources = [ |
+ "print_web_view_helper.cc", |
+ "print_web_view_helper.h", |
+ "print_web_view_helper_android.cc", |
+ "print_web_view_helper_linux.cc", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//content/public/common", |
+ "//content/public/renderer", |
+ "//net", |
+ "//printing", |
+ "//third_party/WebKit/public", |
+ "//ui/base", |
+ "//chrome/common", |
Vitaly Buka (NO REVIEWS)
2015/01/05 17:26:07
components MUST NOT depend on chrome
chrome can de
|
+ ] |
+} |