Chromium Code Reviews| 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..affd0e5ade370541b1aece3c1ce3b5f5896ebda1 |
| --- /dev/null |
| +++ b/components/printing/renderer/BUILD.gn |
| @@ -0,0 +1,30 @@ |
| +# 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) { |
| + cflags = [ "/wd4267" ] # TODO(dgn): crbug.com/167187 fix size_t to int truncations. |
|
Vitaly Buka (NO REVIEWS)
2015/01/08 22:46:16
long line
put comment on line before csflag =
dgn
2015/01/09 10:47:20
Done.
|
| + } |
| +} |