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

Side by Side Diff: base/base.gyp

Issue 7458012: Create a "no compile" drivers script in python to unittest compile time asserts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: increase timeouts Created 9 years, 3 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 | « no previous file | base/bind_unittest.nc » ('j') | tools/nocompile_driver.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'includes': [ 9 'includes': [
10 'base.gypi', 10 'base.gypi',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'type': 'executable', 102 'type': 'executable',
103 'sources': [ 103 'sources': [
104 # Infrastructure files. 104 # Infrastructure files.
105 'test/run_all_unittests.cc', 105 'test/run_all_unittests.cc',
106 106
107 # Tests. 107 # Tests.
108 'at_exit_unittest.cc', 108 'at_exit_unittest.cc',
109 'atomicops_unittest.cc', 109 'atomicops_unittest.cc',
110 'base64_unittest.cc', 110 'base64_unittest.cc',
111 'bind_unittest.cc', 111 'bind_unittest.cc',
112 'bind_unittest.nc',
112 'bits_unittest.cc', 113 'bits_unittest.cc',
113 'callback_unittest.cc', 114 'callback_unittest.cc',
114 'command_line_unittest.cc', 115 'command_line_unittest.cc',
115 'cpu_unittest.cc', 116 'cpu_unittest.cc',
116 'debug/leak_tracker_unittest.cc', 117 'debug/leak_tracker_unittest.cc',
117 'debug/stack_trace_unittest.cc', 118 'debug/stack_trace_unittest.cc',
118 'debug/trace_event_unittest.cc', 119 'debug/trace_event_unittest.cc',
119 'debug/trace_event_win_unittest.cc', 120 'debug/trace_event_win_unittest.cc',
120 'dir_reader_posix_unittest.cc', 121 'dir_reader_posix_unittest.cc',
121 'environment_unittest.cc', 122 'environment_unittest.cc',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 'base', 232 'base',
232 'base_i18n', 233 'base_i18n',
233 'base_static', 234 'base_static',
234 'test_support_base', 235 'test_support_base',
235 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions', 236 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions',
236 '../testing/gmock.gyp:gmock', 237 '../testing/gmock.gyp:gmock',
237 '../testing/gtest.gyp:gtest', 238 '../testing/gtest.gyp:gtest',
238 '../third_party/icu/icu.gyp:icui18n', 239 '../third_party/icu/icu.gyp:icui18n',
239 '../third_party/icu/icu.gyp:icuuc', 240 '../third_party/icu/icu.gyp:icuuc',
240 ], 241 ],
242 'includes': ['../build/nocompile.gypi'],
243 'variables': {
244 # TODO(ajwong): Is there a way to autodetect this?
245 'module_dir': 'base'
246 },
241 'conditions': [ 247 'conditions': [
242 ['toolkit_uses_gtk==1', { 248 ['toolkit_uses_gtk==1', {
243 'sources!': [ 249 'sources!': [
244 'file_version_info_unittest.cc', 250 'file_version_info_unittest.cc',
245 ], 251 ],
246 'sources': [ 252 'sources': [
247 'nix/xdg_util_unittest.cc', 253 'nix/xdg_util_unittest.cc',
248 ], 254 ],
249 'conditions': [ 255 'conditions': [
250 [ 'linux_use_tcmalloc==1', { 256 [ 'linux_use_tcmalloc==1', {
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 'msvs_settings': { 399 'msvs_settings': {
394 'VCLinkerTool': { 400 'VCLinkerTool': {
395 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 401 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
396 }, 402 },
397 }, 403 },
398 }, 404 },
399 ], 405 ],
400 }], 406 }],
401 ], 407 ],
402 } 408 }
OLDNEW
« no previous file with comments | « no previous file | base/bind_unittest.nc » ('j') | tools/nocompile_driver.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698