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

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

Issue 2198023002: Fix GN bootstrap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 'base/path_service.cc', 420 'base/path_service.cc',
421 'base/pending_task.cc', 421 'base/pending_task.cc',
422 'base/pickle.cc', 422 'base/pickle.cc',
423 'base/process/kill.cc', 423 'base/process/kill.cc',
424 'base/process/process_iterator.cc', 424 'base/process/process_iterator.cc',
425 'base/process/process_metrics.cc', 425 'base/process/process_metrics.cc',
426 'base/profiler/scoped_profile.cc', 426 'base/profiler/scoped_profile.cc',
427 'base/profiler/scoped_tracker.cc', 427 'base/profiler/scoped_tracker.cc',
428 'base/profiler/tracked_time.cc', 428 'base/profiler/tracked_time.cc',
429 'base/run_loop.cc', 429 'base/run_loop.cc',
430 'base/sequence_token.cc',
430 'base/sequence_checker_impl.cc', 431 'base/sequence_checker_impl.cc',
431 'base/sequenced_task_runner.cc', 432 'base/sequenced_task_runner.cc',
432 'base/sha1.cc', 433 'base/sha1.cc',
433 'base/strings/pattern.cc', 434 'base/strings/pattern.cc',
434 'base/strings/string_number_conversions.cc', 435 'base/strings/string_number_conversions.cc',
435 'base/strings/string_piece.cc', 436 'base/strings/string_piece.cc',
436 'base/strings/string_split.cc', 437 'base/strings/string_split.cc',
437 'base/strings/string_util.cc', 438 'base/strings/string_util.cc',
438 'base/strings/string_util_constants.cc', 439 'base/strings/string_util_constants.cc',
439 'base/strings/stringprintf.cc', 440 'base/strings/stringprintf.cc',
440 'base/strings/utf_string_conversion_utils.cc', 441 'base/strings/utf_string_conversion_utils.cc',
441 'base/strings/utf_string_conversions.cc', 442 'base/strings/utf_string_conversions.cc',
442 'base/synchronization/cancellation_flag.cc', 443 'base/synchronization/atomic_flag.cc',
443 'base/synchronization/lock.cc', 444 'base/synchronization/lock.cc',
444 'base/sys_info.cc', 445 'base/sys_info.cc',
445 'base/task_runner.cc', 446 'base/task_runner.cc',
446 'base/third_party/dmg_fp/dtoa_wrapper.cc', 447 'base/third_party/dmg_fp/dtoa_wrapper.cc',
447 'base/third_party/dmg_fp/g_fmt.cc', 448 'base/third_party/dmg_fp/g_fmt.cc',
448 'base/third_party/icu/icu_utf.cc', 449 'base/third_party/icu/icu_utf.cc',
449 'base/third_party/nspr/prtime.cc', 450 'base/third_party/nspr/prtime.cc',
450 'base/threading/non_thread_safe_impl.cc', 451 'base/threading/non_thread_safe_impl.cc',
451 'base/threading/post_task_and_reply_impl.cc', 452 'base/threading/post_task_and_reply_impl.cc',
452 'base/threading/sequenced_task_runner_handle.cc', 453 'base/threading/sequenced_task_runner_handle.cc',
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 cmd.append('-v') 725 cmd.append('-v')
725 cmd.append('gn') 726 cmd.append('gn')
726 check_call(cmd) 727 check_call(cmd)
727 728
728 if not options.debug and not is_win: 729 if not options.debug and not is_win:
729 check_call(['strip', os.path.join(build_dir, 'gn')]) 730 check_call(['strip', os.path.join(build_dir, 'gn')])
730 731
731 732
732 if __name__ == '__main__': 733 if __name__ == '__main__':
733 sys.exit(main(sys.argv[1:])) 734 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698