| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': 'static_library', | 12 'type': 'static_library', |
| 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 '../build/temp_gyp/googleurl.gyp:googleurl', | 16 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 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/ui.gyp:ui_base', # Only required for Font support. | 20 '../ui/ui.gyp:ui_base', # Only required for Font support. |
| 21 ], | 21 ], |
| 22 'msvs_guid': '9E5416B9-B91B-4029-93F4-102C1AD5CAF4', | |
| 23 'include_dirs': [ | 22 'include_dirs': [ |
| 24 '..', | 23 '..', |
| 25 ], | 24 ], |
| 26 'sources': [ | 25 'sources': [ |
| 27 'backend/print_backend.cc', | 26 'backend/print_backend.cc', |
| 28 'backend/print_backend.h', | 27 'backend/print_backend.h', |
| 29 'backend/print_backend_consts.cc', | 28 'backend/print_backend_consts.cc', |
| 30 'backend/print_backend_consts.h', | 29 'backend/print_backend_consts.h', |
| 31 'backend/print_backend_dummy.cc', | 30 'backend/print_backend_dummy.cc', |
| 32 'emf_win.cc', | 31 'emf_win.cc', |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'backend/cups_helper.cc', | 143 'backend/cups_helper.cc', |
| 145 'backend/cups_helper.h', | 144 'backend/cups_helper.h', |
| 146 'backend/print_backend_cups.cc', | 145 'backend/print_backend_cups.cc', |
| 147 ], | 146 ], |
| 148 }], | 147 }], |
| 149 ], | 148 ], |
| 150 }, | 149 }, |
| 151 { | 150 { |
| 152 'target_name': 'printing_unittests', | 151 'target_name': 'printing_unittests', |
| 153 'type': 'executable', | 152 'type': 'executable', |
| 154 'msvs_guid': '8B2EE5D9-41BC-4AA2-A401-2DC143A05D2E', | |
| 155 'dependencies': [ | 153 'dependencies': [ |
| 156 'printing', | 154 'printing', |
| 157 '../testing/gtest.gyp:gtest', | 155 '../testing/gtest.gyp:gtest', |
| 158 '../base/base.gyp:test_support_base', | 156 '../base/base.gyp:test_support_base', |
| 159 ], | 157 ], |
| 160 'sources': [ | 158 'sources': [ |
| 161 'emf_win_unittest.cc', | 159 'emf_win_unittest.cc', |
| 162 'printing_test.h', | 160 'printing_test.h', |
| 163 'page_number_unittest.cc', | 161 'page_number_unittest.cc', |
| 164 'page_overlays_unittest.cc', | 162 'page_overlays_unittest.cc', |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 ], | 220 ], |
| 223 }, | 221 }, |
| 224 ], | 222 ], |
| 225 } | 223 } |
| 226 | 224 |
| 227 # Local Variables: | 225 # Local Variables: |
| 228 # tab-width:2 | 226 # tab-width:2 |
| 229 # indent-tabs-mode:nil | 227 # indent-tabs-mode:nil |
| 230 # End: | 228 # End: |
| 231 # vim: set expandtab tabstop=2 shiftwidth=2: | 229 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |