| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN: //components/printing/common:printing_common | 8 # GN: //components/printing/common:printing_common |
| 9 'target_name': 'printing_common', | 9 'target_name': 'printing_common', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '<(DEPTH)/base/base.gyp:base', | 12 '<(DEPTH)/base/base.gyp:base', |
| 13 '<(DEPTH)/ipc/ipc.gyp:ipc', | 13 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 14 '<(DEPTH)/printing/printing.gyp:printing', | 14 '<(DEPTH)/printing/printing.gyp:printing', |
| 15 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 15 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 16 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 16 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 "printing/common/print_messages.cc", | 19 "printing/common/print_messages.cc", |
| 20 "printing/common/print_messages.h", | 20 "printing/common/print_messages.h", |
| 21 "printing/common/printing_message_generator.cc", |
| 22 "printing/common/printing_message_generator.h", |
| 21 ], | 23 ], |
| 22 },{ | 24 },{ |
| 23 # GN: //components/printing/common:printing_renderer | 25 # GN: //components/printing/common:printing_renderer |
| 24 'target_name': 'printing_renderer', | 26 'target_name': 'printing_renderer', |
| 25 'type': 'static_library', | 27 'type': 'static_library', |
| 26 'dependencies': [ | 28 'dependencies': [ |
| 27 '<(DEPTH)/base/base.gyp:base', | 29 '<(DEPTH)/base/base.gyp:base', |
| 28 '<(DEPTH)/content/content.gyp:content_common', | 30 '<(DEPTH)/content/content.gyp:content_common', |
| 29 '<(DEPTH)/content/content.gyp:content_renderer', | 31 '<(DEPTH)/content/content.gyp:content_renderer', |
| 30 '<(DEPTH)/net/net.gyp:net', | 32 '<(DEPTH)/net/net.gyp:net', |
| 31 '<(DEPTH)/printing/printing.gyp:printing', | 33 '<(DEPTH)/printing/printing.gyp:printing', |
| 32 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 34 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 33 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', | 35 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', |
| 34 'components_resources.gyp:components_resources', | 36 'components_resources.gyp:components_resources', |
| 35 'printing_common', | 37 'printing_common', |
| 36 ], | 38 ], |
| 37 'sources': [ | 39 'sources': [ |
| 38 'printing/renderer/print_web_view_helper.cc', | 40 'printing/renderer/print_web_view_helper.cc', |
| 39 'printing/renderer/print_web_view_helper.h', | 41 'printing/renderer/print_web_view_helper.h', |
| 40 'printing/renderer/print_web_view_helper_android.cc', | 42 'printing/renderer/print_web_view_helper_android.cc', |
| 41 'printing/renderer/print_web_view_helper_linux.cc', | 43 'printing/renderer/print_web_view_helper_linux.cc', |
| 42 'printing/renderer/print_web_view_helper_mac.mm', | 44 'printing/renderer/print_web_view_helper_mac.mm', |
| 43 'printing/renderer/print_web_view_helper_pdf_win.cc', | 45 'printing/renderer/print_web_view_helper_pdf_win.cc', |
| 44 ], | 46 ], |
| 45 # TODO(dgn): C4267: http://crbug.com/167187 size_t -> int | 47 # TODO(dgn): C4267: http://crbug.com/167187 size_t -> int |
| 46 'msvs_disabled_warnings': [ 4267 ], | 48 'msvs_disabled_warnings': [ 4267 ], |
| 47 }, | 49 }, |
| 48 ], | 50 ], |
| 49 } | 51 } |
| OLD | NEW |