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

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

Issue 2761733002: Fix GN bootstrap (Closed)
Patch Set: Created 3 years, 9 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 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 'base/strings/utf_string_conversion_utils.cc', 465 'base/strings/utf_string_conversion_utils.cc',
466 'base/strings/utf_string_conversions.cc', 466 'base/strings/utf_string_conversions.cc',
467 'base/synchronization/atomic_flag.cc', 467 'base/synchronization/atomic_flag.cc',
468 'base/synchronization/lock.cc', 468 'base/synchronization/lock.cc',
469 'base/sys_info.cc', 469 'base/sys_info.cc',
470 'base/task_runner.cc', 470 'base/task_runner.cc',
471 'base/task_scheduler/delayed_task_manager.cc', 471 'base/task_scheduler/delayed_task_manager.cc',
472 'base/task_scheduler/post_task.cc', 472 'base/task_scheduler/post_task.cc',
473 'base/task_scheduler/priority_queue.cc', 473 'base/task_scheduler/priority_queue.cc',
474 'base/task_scheduler/scheduler_lock_impl.cc', 474 'base/task_scheduler/scheduler_lock_impl.cc',
475 'base/task_scheduler/scheduler_single_thread_task_runner_manager.cc',
475 'base/task_scheduler/scheduler_worker.cc', 476 'base/task_scheduler/scheduler_worker.cc',
476 'base/task_scheduler/scheduler_worker_pool_impl.cc', 477 'base/task_scheduler/scheduler_worker_pool_impl.cc',
477 'base/task_scheduler/scheduler_worker_pool_params.cc', 478 'base/task_scheduler/scheduler_worker_pool_params.cc',
478 'base/task_scheduler/scheduler_worker_stack.cc', 479 'base/task_scheduler/scheduler_worker_stack.cc',
479 'base/task_scheduler/scoped_set_task_priority_for_current_thread.cc', 480 'base/task_scheduler/scoped_set_task_priority_for_current_thread.cc',
480 'base/task_scheduler/sequence.cc', 481 'base/task_scheduler/sequence.cc',
481 'base/task_scheduler/sequence_sort_key.cc', 482 'base/task_scheduler/sequence_sort_key.cc',
482 'base/task_scheduler/task.cc', 483 'base/task_scheduler/task.cc',
483 'base/task_scheduler/task_scheduler.cc', 484 'base/task_scheduler/task_scheduler.cc',
484 'base/task_scheduler/task_scheduler_impl.cc', 485 'base/task_scheduler/task_scheduler_impl.cc',
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 cmd.append('-v') 773 cmd.append('-v')
773 cmd.append('gn') 774 cmd.append('gn')
774 check_call(cmd) 775 check_call(cmd)
775 776
776 if not options.debug and not is_win: 777 if not options.debug and not is_win:
777 check_call(['strip', os.path.join(build_dir, 'gn')]) 778 check_call(['strip', os.path.join(build_dir, 'gn')])
778 779
779 780
780 if __name__ == '__main__': 781 if __name__ == '__main__':
781 sys.exit(main(sys.argv[1:])) 782 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