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

Side by Side Diff: tools/gn/bootstrap/bootstrap.py

Issue 2052713002: Remove the CryptoAPI implementation of SHA-1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a few stragglers Created 4 years, 6 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
« no previous file with comments | « chrome/installer/mac/third_party/bsdiff/goobsdiff.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This file isn't officially supported by the Chromium project. It's maintained 6 # This file isn't officially supported by the Chromium project. It's maintained
7 # on a best-effort basis by volunteers, so some things may be broken from time 7 # on a best-effort basis by volunteers, so some things may be broken from time
8 # to time. If you encounter errors, it's most often due to files in base that 8 # to time. If you encounter errors, it's most often due to files in base that
9 # have been added or moved since somebody last tried this script. Generally 9 # have been added or moved since somebody last tried this script. Generally
10 # such errors are easy to diagnose. 10 # such errors are easy to diagnose.
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'base/pickle.cc', 263 'base/pickle.cc',
264 'base/process/kill.cc', 264 'base/process/kill.cc',
265 'base/process/process_iterator.cc', 265 'base/process/process_iterator.cc',
266 'base/process/process_metrics.cc', 266 'base/process/process_metrics.cc',
267 'base/profiler/scoped_profile.cc', 267 'base/profiler/scoped_profile.cc',
268 'base/profiler/scoped_tracker.cc', 268 'base/profiler/scoped_tracker.cc',
269 'base/profiler/tracked_time.cc', 269 'base/profiler/tracked_time.cc',
270 'base/run_loop.cc', 270 'base/run_loop.cc',
271 'base/sequence_checker_impl.cc', 271 'base/sequence_checker_impl.cc',
272 'base/sequenced_task_runner.cc', 272 'base/sequenced_task_runner.cc',
273 'base/sha1_portable.cc', 273 'base/sha1.cc',
274 'base/strings/pattern.cc', 274 'base/strings/pattern.cc',
275 'base/strings/string16.cc', 275 'base/strings/string16.cc',
276 'base/strings/string_number_conversions.cc', 276 'base/strings/string_number_conversions.cc',
277 'base/strings/string_piece.cc', 277 'base/strings/string_piece.cc',
278 'base/strings/string_split.cc', 278 'base/strings/string_split.cc',
279 'base/strings/string_util.cc', 279 'base/strings/string_util.cc',
280 'base/strings/string_util_constants.cc', 280 'base/strings/string_util_constants.cc',
281 'base/strings/stringprintf.cc', 281 'base/strings/stringprintf.cc',
282 'base/strings/utf_string_conversion_utils.cc', 282 'base/strings/utf_string_conversion_utils.cc',
283 'base/strings/utf_string_conversions.cc', 283 'base/strings/utf_string_conversions.cc',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 cmd.append('-v') 524 cmd.append('-v')
525 cmd.append('gn') 525 cmd.append('gn')
526 check_call(cmd) 526 check_call(cmd)
527 527
528 if not options.debug: 528 if not options.debug:
529 check_call(['strip', os.path.join(build_dir, 'gn')]) 529 check_call(['strip', os.path.join(build_dir, 'gn')])
530 530
531 531
532 if __name__ == '__main__': 532 if __name__ == '__main__':
533 sys.exit(main(sys.argv[1:])) 533 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « chrome/installer/mac/third_party/bsdiff/goobsdiff.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698