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

Side by Side Diff: base/base.gyp

Issue 8734021: Make CHECK not print messages in official builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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/check_example.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) 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 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 ], 335 ],
336 'sources!': [ 336 'sources!': [
337 'debug/trace_event_win_unittest.cc', 337 'debug/trace_event_win_unittest.cc',
338 'time_win_unittest.cc', 338 'time_win_unittest.cc',
339 'win/win_util_unittest.cc', 339 'win/win_util_unittest.cc',
340 ], 340 ],
341 }], 341 }],
342 ], 342 ],
343 }, 343 },
344 { 344 {
345 'target_name': 'check_example',
346 'type': 'executable',
347 'sources': [
348 'check_example.cc',
349 ],
350 'dependencies': [
351 'base',
352 ],
353 },
354 {
345 'target_name': 'test_support_base', 355 'target_name': 'test_support_base',
346 'type': 'static_library', 356 'type': 'static_library',
347 'dependencies': [ 357 'dependencies': [
348 'base', 358 'base',
349 'base_static', 359 'base_static',
350 'base_i18n', 360 'base_i18n',
351 '../testing/gmock.gyp:gmock', 361 '../testing/gmock.gyp:gmock',
352 '../testing/gtest.gyp:gtest', 362 '../testing/gtest.gyp:gtest',
353 ], 363 ],
354 'export_dependent_settings': [ 364 'export_dependent_settings': [
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 'msvs_settings': { 456 'msvs_settings': {
447 'VCLinkerTool': { 457 'VCLinkerTool': {
448 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 458 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
449 }, 459 },
450 }, 460 },
451 }, 461 },
452 ], 462 ],
453 }], 463 }],
454 ], 464 ],
455 } 465 }
OLDNEW
« no previous file with comments | « no previous file | base/check_example.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698