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

Side by Side Diff: components/printing.gypi

Issue 857053002: Generate the print messages in components/printing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reorder imports 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 unified diff | Download patch
OLDNEW
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/printing_param_traits_macros.h",
19 "printing/common/print_messages.cc", 20 "printing/common/print_messages.cc",
20 "printing/common/print_messages.h", 21 "printing/common/print_messages.h",
21 ], 22 ],
22 },{ 23 },{
23 # GN: //components/printing/common:printing_renderer 24 # GN: //components/printing/common:printing_renderer
24 'target_name': 'printing_renderer', 25 'target_name': 'printing_renderer',
25 'type': 'static_library', 26 'type': 'static_library',
26 'dependencies': [ 27 'dependencies': [
27 '<(DEPTH)/base/base.gyp:base', 28 '<(DEPTH)/base/base.gyp:base',
28 '<(DEPTH)/content/content.gyp:content_common', 29 '<(DEPTH)/content/content.gyp:content_common',
(...skipping 11 matching lines...) Expand all
40 'printing/renderer/print_web_view_helper_android.cc', 41 'printing/renderer/print_web_view_helper_android.cc',
41 'printing/renderer/print_web_view_helper_linux.cc', 42 'printing/renderer/print_web_view_helper_linux.cc',
42 'printing/renderer/print_web_view_helper_mac.mm', 43 'printing/renderer/print_web_view_helper_mac.mm',
43 'printing/renderer/print_web_view_helper_pdf_win.cc', 44 'printing/renderer/print_web_view_helper_pdf_win.cc',
44 ], 45 ],
45 # TODO(dgn): C4267: http://crbug.com/167187 size_t -> int 46 # TODO(dgn): C4267: http://crbug.com/167187 size_t -> int
46 'msvs_disabled_warnings': [ 4267 ], 47 'msvs_disabled_warnings': [ 4267 ],
47 }, 48 },
48 ], 49 ],
49 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698