OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |