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

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

Issue 1950183007: Fix GN bootstrap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 'base/synchronization/lock.cc', 284 'base/synchronization/lock.cc',
285 'base/sys_info.cc', 285 'base/sys_info.cc',
286 'base/task_runner.cc', 286 'base/task_runner.cc',
287 'base/third_party/dmg_fp/dtoa_wrapper.cc', 287 'base/third_party/dmg_fp/dtoa_wrapper.cc',
288 'base/third_party/dmg_fp/g_fmt.cc', 288 'base/third_party/dmg_fp/g_fmt.cc',
289 'base/third_party/icu/icu_utf.cc', 289 'base/third_party/icu/icu_utf.cc',
290 'base/third_party/nspr/prtime.cc', 290 'base/third_party/nspr/prtime.cc',
291 'base/thread_task_runner_handle.cc', 291 'base/thread_task_runner_handle.cc',
292 'base/threading/non_thread_safe_impl.cc', 292 'base/threading/non_thread_safe_impl.cc',
293 'base/threading/post_task_and_reply_impl.cc', 293 'base/threading/post_task_and_reply_impl.cc',
294 'base/threading/sequenced_task_runner_handle.cc',
294 'base/threading/sequenced_worker_pool.cc', 295 'base/threading/sequenced_worker_pool.cc',
295 'base/threading/simple_thread.cc', 296 'base/threading/simple_thread.cc',
296 'base/threading/thread.cc', 297 'base/threading/thread.cc',
297 'base/threading/thread_checker_impl.cc', 298 'base/threading/thread_checker_impl.cc',
298 'base/threading/thread_collision_warner.cc', 299 'base/threading/thread_collision_warner.cc',
299 'base/threading/thread_id_name_manager.cc', 300 'base/threading/thread_id_name_manager.cc',
300 'base/threading/thread_local_storage.cc', 301 'base/threading/thread_local_storage.cc',
301 'base/threading/thread_restrictions.cc', 302 'base/threading/thread_restrictions.cc',
302 'base/threading/worker_pool.cc', 303 'base/threading/worker_pool.cc',
303 'base/time/time.cc', 304 'base/time/time.cc',
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 cmd.append('-v') 523 cmd.append('-v')
523 cmd.append('gn') 524 cmd.append('gn')
524 check_call(cmd) 525 check_call(cmd)
525 526
526 if not options.debug: 527 if not options.debug:
527 check_call(['strip', os.path.join(build_dir, 'gn')]) 528 check_call(['strip', os.path.join(build_dir, 'gn')])
528 529
529 530
530 if __name__ == '__main__': 531 if __name__ == '__main__':
531 sys.exit(main(sys.argv[1:])) 532 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