| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 'base/timer/timer.cc', | 529 'base/timer/timer.cc', |
| 530 'base/trace_event/category_registry.cc', | 530 'base/trace_event/category_registry.cc', |
| 531 'base/trace_event/event_name_filter.cc', | 531 'base/trace_event/event_name_filter.cc', |
| 532 'base/trace_event/heap_profiler_allocation_context.cc', | 532 'base/trace_event/heap_profiler_allocation_context.cc', |
| 533 'base/trace_event/heap_profiler_allocation_context_tracker.cc', | 533 'base/trace_event/heap_profiler_allocation_context_tracker.cc', |
| 534 'base/trace_event/heap_profiler_allocation_register.cc', | 534 'base/trace_event/heap_profiler_allocation_register.cc', |
| 535 'base/trace_event/heap_profiler_event_filter.cc', | 535 'base/trace_event/heap_profiler_event_filter.cc', |
| 536 'base/trace_event/heap_profiler_heap_dump_writer.cc', | 536 'base/trace_event/heap_profiler_heap_dump_writer.cc', |
| 537 'base/trace_event/heap_profiler_serialization_state.cc', | 537 'base/trace_event/heap_profiler_serialization_state.cc', |
| 538 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', | 538 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', |
| 539 'base/trace_event/heap_profiler_string_deduplicator.cc', |
| 539 'base/trace_event/heap_profiler_type_name_deduplicator.cc', | 540 'base/trace_event/heap_profiler_type_name_deduplicator.cc', |
| 540 'base/trace_event/malloc_dump_provider.cc', | 541 'base/trace_event/malloc_dump_provider.cc', |
| 541 'base/trace_event/memory_allocator_dump.cc', | 542 'base/trace_event/memory_allocator_dump.cc', |
| 542 'base/trace_event/memory_allocator_dump_guid.cc', | 543 'base/trace_event/memory_allocator_dump_guid.cc', |
| 543 'base/trace_event/memory_dump_manager.cc', | 544 'base/trace_event/memory_dump_manager.cc', |
| 544 'base/trace_event/memory_dump_provider_info.cc', | 545 'base/trace_event/memory_dump_provider_info.cc', |
| 545 'base/trace_event/memory_dump_request_args.cc', | 546 'base/trace_event/memory_dump_request_args.cc', |
| 546 'base/trace_event/memory_dump_scheduler.cc', | 547 'base/trace_event/memory_dump_scheduler.cc', |
| 547 'base/trace_event/memory_infra_background_whitelist.cc', | 548 'base/trace_event/memory_infra_background_whitelist.cc', |
| 548 'base/trace_event/memory_peak_detector.cc', | 549 'base/trace_event/memory_peak_detector.cc', |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 cmd.append('-v') | 819 cmd.append('-v') |
| 819 cmd.append('gn') | 820 cmd.append('gn') |
| 820 check_call(cmd) | 821 check_call(cmd) |
| 821 | 822 |
| 822 if not options.debug and not is_win: | 823 if not options.debug and not is_win: |
| 823 check_call(['strip', os.path.join(build_dir, 'gn')]) | 824 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 824 | 825 |
| 825 | 826 |
| 826 if __name__ == '__main__': | 827 if __name__ == '__main__': |
| 827 sys.exit(main(sys.argv[1:])) | 828 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |