Chromium Code Reviews| Index: base/allocator/prep_libc.py |
| diff --git a/base/allocator/prep_libc.py b/base/allocator/prep_libc.py |
| index d4219830fb430f2e258a12b1c4027fd48875c4ef..4ad1398e83c1ef7c9821def98fe4be16fdcb1244 100755 |
| --- a/base/allocator/prep_libc.py |
| +++ b/base/allocator/prep_libc.py |
| @@ -39,11 +39,21 @@ def main(): |
| shutil.copyfile(os.path.join(vs_install_dir, 'libcmt.lib'), output_lib) |
| shutil.copyfile(os.path.join(vs_install_dir, 'libcmt.pdb'), |
| os.path.join(outdir, 'libcmt.pdb')) |
| + |
| vspaths = [ |
| 'build\\intel\\mt_obj\\', |
| - 'f:\\dd\\vctools\\crt_bld\\SELF_X86\\crt\\src\\build\\INTEL\\mt_obj\\', |
| - 'F:\\dd\\vctools\\crt_bld\\SELF_X86\\crt\\src\\build\\INTEL\\mt_obj\\nativec\\\\', |
| - 'F:\\dd\\vctools\\crt_bld\\SELF_X86\\crt\\src\\build\\INTEL\\mt_obj\\nativecpp\\\\', |
| + 'f:\\dd\\vctools\\crt_bld\\SELF_X86\\' + \ |
|
scottmg
2013/02/19 18:11:01
nit; maybe a loop/comprehension and some %s would
|
| + 'crt\\src\\build\\INTEL\\mt_obj\\', |
| + 'F:\\dd\\vctools\\crt_bld\\SELF_X86\\' + \ |
| + 'crt\\src\\build\\INTEL\\mt_obj\\nativec\\\\', |
| + 'F:\\dd\\vctools\\crt_bld\\SELF_X86\\' + \ |
| + 'crt\\src\\build\\INTEL\\mt_obj\\nativecpp\\\\', |
| + 'f:\\dd\\vctools\\crt_bld\\SELF_64_amd64\\' + \ |
| + 'crt\\src\\build\\amd64\\mt_obj\\', |
| + 'F:\\dd\\vctools\\crt_bld\\SELF_64_amd64\\' + \ |
| + 'crt\\src\\build\\amd64\\mt_obj\\nativec\\\\', |
| + 'F:\\dd\\vctools\\crt_bld\\SELF_64_amd64\\' + \ |
| + 'crt\\src\\build\\amd64\\mt_obj\\nativecpp\\\\', |
| ] |
| objfiles = ['malloc', 'free', 'realloc', 'new', 'delete', 'new2', 'delete2', |
| 'align', 'msize', 'heapinit', 'expand', 'heapchk', 'heapwalk', |