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

Side by Side Diff: statsreport/statsreport.gyp

Issue 147129: Adding in most of the unit tests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
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 | « serializer/serializer.gyp ('k') | tests/build.scons » ('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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 { 77 {
78 'sources/': [ 78 'sources/': [
79 ['exclude', '(-mac)\.(cc|mm|h)$'], 79 ['exclude', '(-mac)\.(cc|mm|h)$'],
80 ], 80 ],
81 }, 81 },
82 ], 82 ],
83 ], 83 ],
84 }, 84 },
85 { 85 {
86 'target_name': 'o3dStatsReportTest', 86 'target_name': 'o3dStatsReportTest',
87 'type': 'static_library', 87 'type': 'none',
88 'sources': [ 88 'dependencies': [
89 'aggregator-win32_unittest.cc', 89 'o3dStatsReport',
90 'aggregator-win32_unittest.h',
91 'aggregator_unittest.cc',
92 'aggregator_unittest.h',
93 'common/highres_timer_unittest.cc',
94 'formatter_unittest.cc',
95 'metrics_unittest.cc',
96 'persistent_iterator-win32_unittest.cc',
97 ], 90 ],
98 'conditions': [ 91 'direct_dependent_settings': {
99 ['OS != "win"', 92 'sources': [
100 { 93 'aggregator-win32_unittest.cc',
101 'sources/': [ 94 'aggregator-win32_unittest.h',
102 ['exclude', '(-win32)_unittest\.(cc|h)$'], 95 'aggregator_unittest.cc',
103 ], 96 'aggregator_unittest.h',
104 }, 97 'common/highres_timer_unittest.cc',
98 'formatter_unittest.cc',
99 'metrics_unittest.cc',
100 'persistent_iterator-win32_unittest.cc',
105 ], 101 ],
106 ['OS != "mac"', 102 'conditions': [
107 { 103 ['OS != "win"',
108 'sources/': [ 104 {
109 ['exclude', '(-mac)_unittest\.(cc|mm|h)$'], 105 'sources/': [
110 ], 106 ['exclude', '(-win32)_unittest\.(cc|h)$'],
111 }, 107 ],
108 },
109 ],
110 ['OS != "mac"',
111 {
112 'sources/': [
113 ['exclude', '(-mac)_unittest\.(cc|mm|h)$'],
114 ],
115 },
116 ],
112 ], 117 ],
113 ], 118 },
114 }, 119 },
115 ], 120 ],
116 }, 121 },
117 ], 122 ],
118 ], 123 ],
119 } 124 }
OLDNEW
« no previous file with comments | « serializer/serializer.gyp ('k') | tests/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698