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

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

Issue 2650863003: [tracing] Switch to new heap dump format. (Closed)
Patch Set: Address comments 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
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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 'base/timer/elapsed_timer.cc', 504 'base/timer/elapsed_timer.cc',
505 'base/timer/timer.cc', 505 'base/timer/timer.cc',
506 'base/trace_event/category_registry.cc', 506 'base/trace_event/category_registry.cc',
507 'base/trace_event/event_name_filter.cc', 507 'base/trace_event/event_name_filter.cc',
508 'base/trace_event/heap_profiler_allocation_context.cc', 508 'base/trace_event/heap_profiler_allocation_context.cc',
509 'base/trace_event/heap_profiler_allocation_context_tracker.cc', 509 'base/trace_event/heap_profiler_allocation_context_tracker.cc',
510 'base/trace_event/heap_profiler_allocation_register.cc', 510 'base/trace_event/heap_profiler_allocation_register.cc',
511 'base/trace_event/heap_profiler_event_filter.cc', 511 'base/trace_event/heap_profiler_event_filter.cc',
512 'base/trace_event/heap_profiler_heap_dump_writer.cc', 512 'base/trace_event/heap_profiler_heap_dump_writer.cc',
513 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', 513 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc',
514 'base/trace_event/heap_profiler_string_deduplicator.cc',
514 'base/trace_event/heap_profiler_type_name_deduplicator.cc', 515 'base/trace_event/heap_profiler_type_name_deduplicator.cc',
515 'base/trace_event/memory_allocator_dump.cc', 516 'base/trace_event/memory_allocator_dump.cc',
516 'base/trace_event/memory_allocator_dump_guid.cc', 517 'base/trace_event/memory_allocator_dump_guid.cc',
517 'base/trace_event/memory_dump_manager.cc', 518 'base/trace_event/memory_dump_manager.cc',
518 'base/trace_event/memory_dump_request_args.cc', 519 'base/trace_event/memory_dump_request_args.cc',
519 'base/trace_event/memory_dump_scheduler.cc', 520 'base/trace_event/memory_dump_scheduler.cc',
520 'base/trace_event/memory_dump_session_state.cc', 521 'base/trace_event/memory_dump_session_state.cc',
521 'base/trace_event/memory_infra_background_whitelist.cc', 522 'base/trace_event/memory_infra_background_whitelist.cc',
522 'base/trace_event/process_memory_dump.cc', 523 'base/trace_event/process_memory_dump.cc',
523 'base/trace_event/process_memory_maps.cc', 524 'base/trace_event/process_memory_maps.cc',
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
770 cmd.append('-v') 771 cmd.append('-v')
771 cmd.append('gn') 772 cmd.append('gn')
772 check_call(cmd) 773 check_call(cmd)
773 774
774 if not options.debug and not is_win: 775 if not options.debug and not is_win:
775 check_call(['strip', os.path.join(build_dir, 'gn')]) 776 check_call(['strip', os.path.join(build_dir, 'gn')])
776 777
777 778
778 if __name__ == '__main__': 779 if __name__ == '__main__':
779 sys.exit(main(sys.argv[1:])) 780 sys.exit(main(sys.argv[1:]))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698