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

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

Issue 2272653003: Fix GN bootstrap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 'base/strings/string_split.cc', 438 'base/strings/string_split.cc',
439 'base/strings/string_util.cc', 439 'base/strings/string_util.cc',
440 'base/strings/string_util_constants.cc', 440 'base/strings/string_util_constants.cc',
441 'base/strings/stringprintf.cc', 441 'base/strings/stringprintf.cc',
442 'base/strings/utf_string_conversion_utils.cc', 442 'base/strings/utf_string_conversion_utils.cc',
443 'base/strings/utf_string_conversions.cc', 443 'base/strings/utf_string_conversions.cc',
444 'base/synchronization/atomic_flag.cc', 444 'base/synchronization/atomic_flag.cc',
445 'base/synchronization/lock.cc', 445 'base/synchronization/lock.cc',
446 'base/sys_info.cc', 446 'base/sys_info.cc',
447 'base/task_runner.cc', 447 'base/task_runner.cc',
448 'base/task_scheduler/delayed_task_manager.cc',
449 'base/task_scheduler/post_task.cc',
450 'base/task_scheduler/priority_queue.cc',
451 'base/task_scheduler/scheduler_lock_impl.cc',
452 'base/task_scheduler/scheduler_service_thread.cc',
453 'base/task_scheduler/scheduler_worker.cc',
454 'base/task_scheduler/scheduler_worker_pool_impl.cc',
455 'base/task_scheduler/scheduler_worker_stack.cc',
456 'base/task_scheduler/sequence.cc',
457 'base/task_scheduler/sequence_sort_key.cc',
458 'base/task_scheduler/task.cc',
459 'base/task_scheduler/task_scheduler.cc',
460 'base/task_scheduler/task_scheduler_impl.cc',
461 'base/task_scheduler/task_tracker.cc',
462 'base/task_scheduler/task_traits.cc',
448 'base/third_party/dmg_fp/dtoa_wrapper.cc', 463 'base/third_party/dmg_fp/dtoa_wrapper.cc',
449 'base/third_party/dmg_fp/g_fmt.cc', 464 'base/third_party/dmg_fp/g_fmt.cc',
450 'base/third_party/icu/icu_utf.cc', 465 'base/third_party/icu/icu_utf.cc',
451 'base/third_party/nspr/prtime.cc', 466 'base/third_party/nspr/prtime.cc',
452 'base/threading/non_thread_safe_impl.cc', 467 'base/threading/non_thread_safe_impl.cc',
453 'base/threading/post_task_and_reply_impl.cc', 468 'base/threading/post_task_and_reply_impl.cc',
454 'base/threading/sequenced_task_runner_handle.cc', 469 'base/threading/sequenced_task_runner_handle.cc',
455 'base/threading/sequenced_worker_pool.cc', 470 'base/threading/sequenced_worker_pool.cc',
456 'base/threading/simple_thread.cc', 471 'base/threading/simple_thread.cc',
457 'base/threading/thread.cc', 472 'base/threading/thread.cc',
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 cmd.append('-v') 741 cmd.append('-v')
727 cmd.append('gn') 742 cmd.append('gn')
728 check_call(cmd) 743 check_call(cmd)
729 744
730 if not options.debug and not is_win: 745 if not options.debug and not is_win:
731 check_call(['strip', os.path.join(build_dir, 'gn')]) 746 check_call(['strip', os.path.join(build_dir, 'gn')])
732 747
733 748
734 if __name__ == '__main__': 749 if __name__ == '__main__':
735 sys.exit(main(sys.argv[1:])) 750 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