| OLD | NEW |
| 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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 'base/trace_event/category_registry.cc', | 509 'base/trace_event/category_registry.cc', |
| 510 'base/trace_event/event_name_filter.cc', | 510 'base/trace_event/event_name_filter.cc', |
| 511 'base/trace_event/heap_profiler_allocation_context.cc', | 511 'base/trace_event/heap_profiler_allocation_context.cc', |
| 512 'base/trace_event/heap_profiler_allocation_context_tracker.cc', | 512 'base/trace_event/heap_profiler_allocation_context_tracker.cc', |
| 513 'base/trace_event/heap_profiler_allocation_register.cc', | 513 'base/trace_event/heap_profiler_allocation_register.cc', |
| 514 'base/trace_event/heap_profiler_event_filter.cc', | 514 'base/trace_event/heap_profiler_event_filter.cc', |
| 515 'base/trace_event/heap_profiler_heap_dump_writer.cc', | 515 'base/trace_event/heap_profiler_heap_dump_writer.cc', |
| 516 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', | 516 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', |
| 517 'base/trace_event/heap_profiler_type_name_deduplicator.cc', | 517 'base/trace_event/heap_profiler_type_name_deduplicator.cc', |
| 518 'base/trace_event/memory_allocator_dump.cc', | 518 'base/trace_event/memory_allocator_dump.cc', |
| 519 'base/trace_event/memory_allocator_dump.cc', |
| 519 'base/trace_event/memory_allocator_dump_guid.cc', | 520 'base/trace_event/memory_allocator_dump_guid.cc', |
| 520 'base/trace_event/memory_dump_manager.cc', | 521 'base/trace_event/memory_dump_manager.cc', |
| 521 'base/trace_event/memory_dump_provider_info.cc', | 522 'base/trace_event/memory_dump_provider_info.cc', |
| 522 'base/trace_event/memory_dump_request_args.cc', | 523 'base/trace_event/memory_dump_request_args.cc', |
| 523 'base/trace_event/memory_dump_scheduler.cc', | 524 'base/trace_event/memory_dump_scheduler.cc', |
| 524 'base/trace_event/memory_dump_session_state.cc', | 525 'base/trace_event/memory_dump_session_state.cc', |
| 525 'base/trace_event/memory_infra_background_whitelist.cc', | 526 'base/trace_event/memory_infra_background_whitelist.cc', |
| 526 'base/trace_event/memory_peak_detector.cc', | 527 'base/trace_event/memory_peak_detector.cc', |
| 528 'base/trace_event/memory_tracing_frontend.cc', |
| 527 'base/trace_event/process_memory_dump.cc', | 529 'base/trace_event/process_memory_dump.cc', |
| 528 'base/trace_event/process_memory_maps.cc', | 530 'base/trace_event/process_memory_maps.cc', |
| 529 'base/trace_event/process_memory_totals.cc', | 531 'base/trace_event/process_memory_totals.cc', |
| 530 'base/trace_event/trace_buffer.cc', | 532 'base/trace_event/trace_buffer.cc', |
| 531 'base/trace_event/trace_config.cc', | 533 'base/trace_event/trace_config.cc', |
| 532 'base/trace_event/trace_config_category_filter.cc', | 534 'base/trace_event/trace_config_category_filter.cc', |
| 533 'base/trace_event/trace_event_argument.cc', | 535 'base/trace_event/trace_event_argument.cc', |
| 534 'base/trace_event/trace_event_filter.cc', | 536 'base/trace_event/trace_event_filter.cc', |
| 535 'base/trace_event/trace_event_impl.cc', | 537 'base/trace_event/trace_event_impl.cc', |
| 536 'base/trace_event/trace_event_memory_overhead.cc', | 538 'base/trace_event/trace_event_memory_overhead.cc', |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 cmd.append('-v') | 781 cmd.append('-v') |
| 780 cmd.append('gn') | 782 cmd.append('gn') |
| 781 check_call(cmd) | 783 check_call(cmd) |
| 782 | 784 |
| 783 if not options.debug and not is_win: | 785 if not options.debug and not is_win: |
| 784 check_call(['strip', os.path.join(build_dir, 'gn')]) | 786 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 785 | 787 |
| 786 | 788 |
| 787 if __name__ == '__main__': | 789 if __name__ == '__main__': |
| 788 sys.exit(main(sys.argv[1:])) | 790 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |