| OLD | NEW |
| 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 { |
| 11 'target_name': 'printing', | 11 'target_name': 'printing', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../base/base.gyp:base_i18n', | 15 '../base/base.gyp:base_i18n', |
| 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 17 '../skia/skia.gyp:skia', | 17 '../skia/skia.gyp:skia', |
| 18 '../third_party/icu/icu.gyp:icui18n', | 18 '../third_party/icu/icu.gyp:icui18n', |
| 19 '../third_party/icu/icu.gyp:icuuc', | 19 '../third_party/icu/icu.gyp:icuuc', |
| 20 '../ui/gfx/gfx.gyp:gfx', | 20 '../ui/gfx/gfx.gyp:gfx', |
| 21 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 21 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', | 22 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', |
| 22 '../url/url.gyp:url_lib', | 23 '../url/url.gyp:url_lib', |
| 23 ], | 24 ], |
| 24 'defines': [ | 25 'defines': [ |
| 25 'PRINTING_IMPLEMENTATION', | 26 'PRINTING_IMPLEMENTATION', |
| 26 ], | 27 ], |
| 27 'include_dirs': [ | 28 'include_dirs': [ |
| 28 '..', | 29 '..', |
| 29 ], | 30 ], |
| 30 'sources': [ | 31 'sources': [ |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 }, | 244 }, |
| 244 { | 245 { |
| 245 'target_name': 'printing_unittests', | 246 'target_name': 'printing_unittests', |
| 246 'type': 'executable', | 247 'type': 'executable', |
| 247 'dependencies': [ | 248 'dependencies': [ |
| 248 'printing', | 249 'printing', |
| 249 '../testing/gtest.gyp:gtest', | 250 '../testing/gtest.gyp:gtest', |
| 250 '../base/base.gyp:run_all_unittests', | 251 '../base/base.gyp:run_all_unittests', |
| 251 '../base/base.gyp:test_support_base', | 252 '../base/base.gyp:test_support_base', |
| 252 '../ui/gfx/gfx.gyp:gfx', | 253 '../ui/gfx/gfx.gyp:gfx', |
| 254 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 253 '../ui/ui.gyp:ui', | 255 '../ui/ui.gyp:ui', |
| 254 ], | 256 ], |
| 255 'sources': [ | 257 'sources': [ |
| 256 'emf_win_unittest.cc', | 258 'emf_win_unittest.cc', |
| 257 'page_number_unittest.cc', | 259 'page_number_unittest.cc', |
| 258 'page_range_unittest.cc', | 260 'page_range_unittest.cc', |
| 259 'page_setup_unittest.cc', | 261 'page_setup_unittest.cc', |
| 260 'pdf_metafile_cg_mac_unittest.cc', | 262 'pdf_metafile_cg_mac_unittest.cc', |
| 261 'printed_page_unittest.cc', | 263 'printed_page_unittest.cc', |
| 262 'printing_context_win_unittest.cc', | 264 'printing_context_win_unittest.cc', |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 }, | 353 }, |
| 352 'dependencies': [ | 354 'dependencies': [ |
| 353 '../base/base.gyp:base_java', | 355 '../base/base.gyp:base_java', |
| 354 ], | 356 ], |
| 355 'includes': [ '../build/java.gypi' ], | 357 'includes': [ '../build/java.gypi' ], |
| 356 } | 358 } |
| 357 ] | 359 ] |
| 358 }], | 360 }], |
| 359 ] | 361 ] |
| 360 } | 362 } |
| OLD | NEW |