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

Side by Side Diff: printing/printing.gyp

Issue 149407: Make the printint_unittest use the correct test harness. This removes the ne... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « printing/page_overlays_unittest.cc ('k') | printing/run_all_unittests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 '../testing/gtest.gyp:gtestmain', 82 '../testing/gtest.gyp:gtestmain',
83 ], 83 ],
84 'sources': [ 84 'sources': [
85 'emf_win_unittest.cc', 85 'emf_win_unittest.cc',
86 'printing_test.h', 86 'printing_test.h',
87 'page_number_unittest.cc', 87 'page_number_unittest.cc',
88 'page_overlays_unittest.cc', 88 'page_overlays_unittest.cc',
89 'page_range_unittest.cc', 89 'page_range_unittest.cc',
90 'page_setup_unittest.cc', 90 'page_setup_unittest.cc',
91 'printing_context_win_unittest.cc', 91 'printing_context_win_unittest.cc',
92 'run_all_unittests.cc',
92 'units_unittest.cc', 93 'units_unittest.cc',
93 ], 94 ],
94 'conditions': [ 95 'conditions': [
95 ['OS!="linux"', {'sources/': [['exclude', '_linux_unittest\\.cc$']]}], 96 ['OS!="linux"', {'sources/': [['exclude', '_linux_unittest\\.cc$']]}],
96 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], 97 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}],
97 ['OS!="win"', { 98 ['OS!="win"', {
98 'sources/': [ 99 'sources/': [
99 ['exclude', '_win_unittest\\.cc$'], 100 ['exclude', '_win_unittest\\.cc$'],
100 101
101 # Most of the printing functionailty is Windows only for now. 102 # Most of the printing functionailty is Windows only for now.
102 ['exclude', '.*'], 103 ['exclude', '.*'],
103 ['include', 'page_range_unittest.cc'], 104 ['include', 'page_range_unittest.cc'],
104 ['include', 'page_setup_unittest.cc'], 105 ['include', 'page_setup_unittest.cc'],
105 ['include', 'units_unittest.cc'], 106 ['include', 'units_unittest.cc'],
106 ] 107 ]
107 }, { # else: OS=="win" 108 }, { # else: OS=="win"
108 'sources/': [['exclude', '_posix_unittest\\.cc$']] 109 'sources/': [['exclude', '_posix_unittest\\.cc$']]
109 }], 110 }],
110 ], 111 ],
111 }, 112 },
112 ], 113 ],
113 } 114 }
OLDNEW
« no previous file with comments | « printing/page_overlays_unittest.cc ('k') | printing/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698