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

Side by Side Diff: printing/printing.gyp

Issue 23116003: Adds PrintingContext implementation stub for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes some build targets and try bots. Some other nits. Created 7 years, 4 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 19 matching lines...) Expand all
30 'backend/print_backend.cc', 30 'backend/print_backend.cc',
31 'backend/print_backend.h', 31 'backend/print_backend.h',
32 'backend/print_backend_consts.cc', 32 'backend/print_backend_consts.cc',
33 'backend/print_backend_consts.h', 33 'backend/print_backend_consts.h',
34 'backend/print_backend_dummy.cc', 34 'backend/print_backend_dummy.cc',
35 'backend/printing_info_win.cc', 35 'backend/printing_info_win.cc',
36 'backend/printing_info_win.h', 36 'backend/printing_info_win.h',
37 'emf_win.cc', 37 'emf_win.cc',
38 'emf_win.h', 38 'emf_win.h',
39 'image.cc', 39 'image.cc',
40 'image_android.cc',
40 'image_linux.cc', 41 'image_linux.cc',
41 'image_mac.cc', 42 'image_mac.cc',
42 'image_win.cc', 43 'image_win.cc',
43 'image.h', 44 'image.h',
44 'metafile.h', 45 'metafile.h',
45 'metafile_impl.h', 46 'metafile_impl.h',
46 'metafile_skia_wrapper.h', 47 'metafile_skia_wrapper.h',
47 'metafile_skia_wrapper.cc', 48 'metafile_skia_wrapper.cc',
48 'page_number.cc', 49 'page_number.cc',
49 'page_number.h', 50 'page_number.h',
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 'sources': [ 222 'sources': [
222 'backend/print_backend_chromeos.cc', 223 'backend/print_backend_chromeos.cc',
223 ], 224 ],
224 }], 225 }],
225 ['toolkit_uses_gtk==1 and chromeos==0', { 226 ['toolkit_uses_gtk==1 and chromeos==0', {
226 'sources': [ 227 'sources': [
227 'printing_context_gtk.cc', 228 'printing_context_gtk.cc',
228 'printing_context_gtk.h', 229 'printing_context_gtk.h',
229 ], 230 ],
230 }], 231 }],
232 ['OS=="android"', {
233 'sources': [
234 'printing_context_android.h',
Lei Zhang 2013/08/19 21:02:15 Shouldn't you be able to just put this in the sour
235 ],
236 }],
231 ], 237 ],
232 }, 238 },
233 { 239 {
234 'target_name': 'printing_unittests', 240 'target_name': 'printing_unittests',
235 'type': 'executable', 241 'type': 'executable',
236 'dependencies': [ 242 'dependencies': [
237 'printing', 243 'printing',
238 '../testing/gtest.gyp:gtest', 244 '../testing/gtest.gyp:gtest',
239 '../base/base.gyp:test_support_base', 245 '../base/base.gyp:test_support_base',
240 '../ui/ui.gyp:ui', 246 '../ui/ui.gyp:ui',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 '<!@(python cups_config_helper.py --cflags)', 326 '<!@(python cups_config_helper.py --cflags)',
321 ], 327 ],
322 }], 328 }],
323 ], 329 ],
324 }, 330 },
325 }], 331 }],
326 ], 332 ],
327 }, 333 },
328 ], 334 ],
329 } 335 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698