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

Side by Side Diff: base/allocator/allocator.gyp

Issue 10388215: replace prep_libc.sh with prep_libc.py, and quiet the output (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/allocator/prep_libc.py » ('j') | base/allocator/prep_libc.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'jemalloc_dir': '../../third_party/jemalloc/chromium', 7 'jemalloc_dir': '../../third_party/jemalloc/chromium',
8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium', 8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 'conditions': [ 446 'conditions': [
447 ['OS=="win"', { 447 ['OS=="win"', {
448 'targets': [ 448 'targets': [
449 { 449 {
450 'target_name': 'libcmt', 450 'target_name': 'libcmt',
451 'type': 'none', 451 'type': 'none',
452 'actions': [ 452 'actions': [
453 { 453 {
454 'action_name': 'libcmt', 454 'action_name': 'libcmt',
455 'inputs': [ 455 'inputs': [
456 'prep_libc.sh', 456 'prep_libc.py',
457 ], 457 ],
458 'outputs': [ 458 'outputs': [
459 '<(SHARED_INTERMEDIATE_DIR)/allocator/libcmt.lib', 459 '<(SHARED_INTERMEDIATE_DIR)/allocator/libcmt.lib',
460 ], 460 ],
461 'action': [ 461 'action': [
462 './prep_libc.sh', 462 'python',
463 'prep_libc.py',
463 '$(VCInstallDir)lib', 464 '$(VCInstallDir)lib',
464 '<(SHARED_INTERMEDIATE_DIR)/allocator', 465 '<(SHARED_INTERMEDIATE_DIR)/allocator',
465 ], 466 ],
467 'msvs_cygwin_shell': '0',
466 }, 468 },
467 ], 469 ],
468 }, 470 },
469 { 471 {
470 'target_name': 'allocator_unittests', 472 'target_name': 'allocator_unittests',
471 'type': 'executable', 473 'type': 'executable',
472 'dependencies': [ 474 'dependencies': [
473 'allocator', 475 'allocator',
474 'allocator_extension_thunks', 476 'allocator_extension_thunks',
475 '../../testing/gtest.gyp:gtest', 477 '../../testing/gtest.gyp:gtest',
(...skipping 24 matching lines...) Expand all
500 'configurations': { 502 'configurations': {
501 'Common_Base': { 503 'Common_Base': {
502 'msvs_target_platform': 'x64', 504 'msvs_target_platform': 'x64',
503 }, 505 },
504 }, 506 },
505 }, 507 },
506 ], 508 ],
507 }], 509 }],
508 ], 510 ],
509 } 511 }
OLDNEW
« no previous file with comments | « no previous file | base/allocator/prep_libc.py » ('j') | base/allocator/prep_libc.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698