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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 'base/threading/thread_checker_impl.cc', | 474 'base/threading/thread_checker_impl.cc', |
475 'base/threading/thread_collision_warner.cc', | 475 'base/threading/thread_collision_warner.cc', |
476 'base/threading/thread_id_name_manager.cc', | 476 'base/threading/thread_id_name_manager.cc', |
477 'base/threading/thread_local_storage.cc', | 477 'base/threading/thread_local_storage.cc', |
478 'base/threading/thread_restrictions.cc', | 478 'base/threading/thread_restrictions.cc', |
479 'base/threading/thread_task_runner_handle.cc', | 479 'base/threading/thread_task_runner_handle.cc', |
480 'base/threading/worker_pool.cc', | 480 'base/threading/worker_pool.cc', |
481 'base/time/time.cc', | 481 'base/time/time.cc', |
482 'base/timer/elapsed_timer.cc', | 482 'base/timer/elapsed_timer.cc', |
483 'base/timer/timer.cc', | 483 'base/timer/timer.cc', |
| 484 'base/trace_event/category_registry.cc', |
484 'base/trace_event/heap_profiler_allocation_context.cc', | 485 'base/trace_event/heap_profiler_allocation_context.cc', |
485 'base/trace_event/heap_profiler_allocation_context_tracker.cc', | 486 'base/trace_event/heap_profiler_allocation_context_tracker.cc', |
486 'base/trace_event/heap_profiler_allocation_register.cc', | 487 'base/trace_event/heap_profiler_allocation_register.cc', |
487 'base/trace_event/heap_profiler_heap_dump_writer.cc', | 488 'base/trace_event/heap_profiler_heap_dump_writer.cc', |
488 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', | 489 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', |
489 'base/trace_event/heap_profiler_type_name_deduplicator.cc', | 490 'base/trace_event/heap_profiler_type_name_deduplicator.cc', |
490 'base/trace_event/memory_allocator_dump.cc', | 491 'base/trace_event/memory_allocator_dump.cc', |
491 'base/trace_event/memory_allocator_dump_guid.cc', | 492 'base/trace_event/memory_allocator_dump_guid.cc', |
492 'base/trace_event/memory_dump_manager.cc', | 493 'base/trace_event/memory_dump_manager.cc', |
493 'base/trace_event/memory_dump_request_args.cc', | 494 'base/trace_event/memory_dump_request_args.cc', |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 cmd.append('-v') | 740 cmd.append('-v') |
740 cmd.append('gn') | 741 cmd.append('gn') |
741 check_call(cmd) | 742 check_call(cmd) |
742 | 743 |
743 if not options.debug and not is_win: | 744 if not options.debug and not is_win: |
744 check_call(['strip', os.path.join(build_dir, 'gn')]) | 745 check_call(['strip', os.path.join(build_dir, 'gn')]) |
745 | 746 |
746 | 747 |
747 if __name__ == '__main__': | 748 if __name__ == '__main__': |
748 sys.exit(main(sys.argv[1:])) | 749 sys.exit(main(sys.argv[1:])) |
OLD | NEW |