| 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 { |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 'dependencies': [ | 229 'dependencies': [ |
| 230 'printing_jni_headers', | 230 'printing_jni_headers', |
| 231 ], | 231 ], |
| 232 }], | 232 }], |
| 233 ], | 233 ], |
| 234 }, | 234 }, |
| 235 { | 235 { |
| 236 'target_name': 'printing_unittests', | 236 'target_name': 'printing_unittests', |
| 237 'type': 'executable', | 237 'type': 'executable', |
| 238 'dependencies': [ | 238 'dependencies': [ |
| 239 'printing', | |
| 240 '../testing/gtest.gyp:gtest', | |
| 241 '../base/base.gyp:run_all_unittests', | 239 '../base/base.gyp:run_all_unittests', |
| 242 '../base/base.gyp:test_support_base', | 240 '../base/base.gyp:test_support_base', |
| 241 '../testing/gtest.gyp:gtest', |
| 242 '../ui/base/ui_base.gyp:ui_base', |
| 243 '../ui/gfx/gfx.gyp:gfx', | 243 '../ui/gfx/gfx.gyp:gfx', |
| 244 '../ui/gfx/gfx.gyp:gfx_geometry', | 244 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 245 '../ui/ui.gyp:ui', | 245 'printing', |
| 246 ], | 246 ], |
| 247 'sources': [ | 247 'sources': [ |
| 248 'emf_win_unittest.cc', | 248 'emf_win_unittest.cc', |
| 249 'page_number_unittest.cc', | 249 'page_number_unittest.cc', |
| 250 'page_range_unittest.cc', | 250 'page_range_unittest.cc', |
| 251 'page_setup_unittest.cc', | 251 'page_setup_unittest.cc', |
| 252 'pdf_metafile_cg_mac_unittest.cc', | 252 'pdf_metafile_cg_mac_unittest.cc', |
| 253 'printed_page_unittest.cc', | 253 'printed_page_unittest.cc', |
| 254 'printing_context_win_unittest.cc', | 254 'printing_context_win_unittest.cc', |
| 255 'printing_test.h', | 255 'printing_test.h', |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 }, | 344 }, |
| 345 'dependencies': [ | 345 'dependencies': [ |
| 346 '../base/base.gyp:base_java', | 346 '../base/base.gyp:base_java', |
| 347 ], | 347 ], |
| 348 'includes': [ '../build/java.gypi' ], | 348 'includes': [ '../build/java.gypi' ], |
| 349 } | 349 } |
| 350 ] | 350 ] |
| 351 }], | 351 }], |
| 352 ] | 352 ] |
| 353 } | 353 } |
| OLD | NEW |