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

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

Issue 1972093002: GN: Fix bootstrap.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bootstrap.py again 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 'base/debug/alias.cc', 217 'base/debug/alias.cc',
218 'base/debug/stack_trace.cc', 218 'base/debug/stack_trace.cc',
219 'base/debug/task_annotator.cc', 219 'base/debug/task_annotator.cc',
220 'base/environment.cc', 220 'base/environment.cc',
221 'base/files/file.cc', 221 'base/files/file.cc',
222 'base/files/file_enumerator.cc', 222 'base/files/file_enumerator.cc',
223 'base/files/file_path.cc', 223 'base/files/file_path.cc',
224 'base/files/file_path_constants.cc', 224 'base/files/file_path_constants.cc',
225 'base/files/file_tracing.cc', 225 'base/files/file_tracing.cc',
226 'base/files/file_util.cc', 226 'base/files/file_util.cc',
227 'base/files/important_file_writer.cc',
227 'base/files/memory_mapped_file.cc', 228 'base/files/memory_mapped_file.cc',
228 'base/files/scoped_file.cc', 229 'base/files/scoped_file.cc',
229 'base/hash.cc', 230 'base/hash.cc',
230 'base/json/json_parser.cc', 231 'base/json/json_parser.cc',
231 'base/json/json_reader.cc', 232 'base/json/json_reader.cc',
232 'base/json/json_string_value_serializer.cc', 233 'base/json/json_string_value_serializer.cc',
233 'base/json/json_writer.cc', 234 'base/json/json_writer.cc',
234 'base/json/string_escape.cc', 235 'base/json/string_escape.cc',
235 'base/lazy_instance.cc', 236 'base/lazy_instance.cc',
236 'base/location.cc', 237 'base/location.cc',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 'base/strings/utf_string_conversion_utils.cc', 282 'base/strings/utf_string_conversion_utils.cc',
282 'base/strings/utf_string_conversions.cc', 283 'base/strings/utf_string_conversions.cc',
283 'base/synchronization/cancellation_flag.cc', 284 'base/synchronization/cancellation_flag.cc',
284 'base/synchronization/lock.cc', 285 'base/synchronization/lock.cc',
285 'base/sys_info.cc', 286 'base/sys_info.cc',
286 'base/task_runner.cc', 287 'base/task_runner.cc',
287 'base/third_party/dmg_fp/dtoa_wrapper.cc', 288 'base/third_party/dmg_fp/dtoa_wrapper.cc',
288 'base/third_party/dmg_fp/g_fmt.cc', 289 'base/third_party/dmg_fp/g_fmt.cc',
289 'base/third_party/icu/icu_utf.cc', 290 'base/third_party/icu/icu_utf.cc',
290 'base/third_party/nspr/prtime.cc', 291 'base/third_party/nspr/prtime.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_task_runner_handle.cc',
295 'base/threading/sequenced_worker_pool.cc', 295 'base/threading/sequenced_worker_pool.cc',
296 'base/threading/simple_thread.cc', 296 'base/threading/simple_thread.cc',
297 'base/threading/thread.cc', 297 'base/threading/thread.cc',
298 'base/threading/thread_checker_impl.cc', 298 'base/threading/thread_checker_impl.cc',
299 'base/threading/thread_collision_warner.cc', 299 'base/threading/thread_collision_warner.cc',
300 'base/threading/thread_id_name_manager.cc', 300 'base/threading/thread_id_name_manager.cc',
301 'base/threading/thread_local_storage.cc', 301 'base/threading/thread_local_storage.cc',
302 'base/threading/thread_restrictions.cc', 302 'base/threading/thread_restrictions.cc',
303 'base/threading/thread_task_runner_handle.cc',
303 'base/threading/worker_pool.cc', 304 'base/threading/worker_pool.cc',
304 'base/time/time.cc', 305 'base/time/time.cc',
305 'base/timer/elapsed_timer.cc', 306 'base/timer/elapsed_timer.cc',
306 'base/timer/timer.cc', 307 'base/timer/timer.cc',
307 'base/trace_event/heap_profiler_allocation_context.cc', 308 'base/trace_event/heap_profiler_allocation_context.cc',
308 'base/trace_event/heap_profiler_allocation_context_tracker.cc', 309 'base/trace_event/heap_profiler_allocation_context_tracker.cc',
309 'base/trace_event/heap_profiler_allocation_register.cc', 310 'base/trace_event/heap_profiler_allocation_register.cc',
310 'base/trace_event/heap_profiler_heap_dump_writer.cc', 311 'base/trace_event/heap_profiler_heap_dump_writer.cc',
311 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', 312 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc',
312 'base/trace_event/heap_profiler_type_name_deduplicator.cc', 313 'base/trace_event/heap_profiler_type_name_deduplicator.cc',
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 cmd.append('-v') 524 cmd.append('-v')
524 cmd.append('gn') 525 cmd.append('gn')
525 check_call(cmd) 526 check_call(cmd)
526 527
527 if not options.debug: 528 if not options.debug:
528 check_call(['strip', os.path.join(build_dir, 'gn')]) 529 check_call(['strip', os.path.join(build_dir, 'gn')])
529 530
530 531
531 if __name__ == '__main__': 532 if __name__ == '__main__':
532 sys.exit(main(sys.argv[1:])) 533 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