OLD | NEW |
(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 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'printing_renderer', |
| 9 'type': 'static_library', |
| 10 'dependencies': [ |
| 11 '<(DEPTH)/base/base.gyp:base', |
| 12 '<(DEPTH)/content/content.gyp:content_common', |
| 13 '<(DEPTH)/content/content.gyp:content_renderer', |
| 14 '<(DEPTH)/net/net.gyp:net', |
| 15 '<(DEPTH)/printing/printing.gyp:printing', |
| 16 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 17 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
| 18 '<(DEPTH)/chrome/chrome.gyp:common', |
| 19 ], |
| 20 'sources': [ |
| 21 "printing/renderer/print_web_view_helper.cc", |
| 22 "printing/renderer/print_web_view_helper.h", |
| 23 "printing/renderer/print_web_view_helper_android.cc", |
| 24 "printing/renderer/print_web_view_helper_linux.cc", |
| 25 ], |
| 26 }, |
| 27 ], |
| 28 } |
OLD | NEW |