| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 'base/strings/utf_string_conversion_utils.cc', | 443 'base/strings/utf_string_conversion_utils.cc', |
| 444 'base/strings/utf_string_conversions.cc', | 444 'base/strings/utf_string_conversions.cc', |
| 445 'base/synchronization/atomic_flag.cc', | 445 'base/synchronization/atomic_flag.cc', |
| 446 'base/synchronization/lock.cc', | 446 'base/synchronization/lock.cc', |
| 447 'base/sys_info.cc', | 447 'base/sys_info.cc', |
| 448 'base/task_runner.cc', | 448 'base/task_runner.cc', |
| 449 'base/task_scheduler/delayed_task_manager.cc', | 449 'base/task_scheduler/delayed_task_manager.cc', |
| 450 'base/task_scheduler/post_task.cc', | 450 'base/task_scheduler/post_task.cc', |
| 451 'base/task_scheduler/priority_queue.cc', | 451 'base/task_scheduler/priority_queue.cc', |
| 452 'base/task_scheduler/scheduler_lock_impl.cc', | 452 'base/task_scheduler/scheduler_lock_impl.cc', |
| 453 'base/task_scheduler/scheduler_service_thread.cc', | |
| 454 'base/task_scheduler/scheduler_worker.cc', | 453 'base/task_scheduler/scheduler_worker.cc', |
| 455 'base/task_scheduler/scheduler_worker_pool_impl.cc', | 454 'base/task_scheduler/scheduler_worker_pool_impl.cc', |
| 456 'base/task_scheduler/scheduler_worker_stack.cc', | 455 'base/task_scheduler/scheduler_worker_stack.cc', |
| 457 'base/task_scheduler/sequence.cc', | 456 'base/task_scheduler/sequence.cc', |
| 458 'base/task_scheduler/sequence_sort_key.cc', | 457 'base/task_scheduler/sequence_sort_key.cc', |
| 459 'base/task_scheduler/task.cc', | 458 'base/task_scheduler/task.cc', |
| 460 'base/task_scheduler/task_scheduler.cc', | 459 'base/task_scheduler/task_scheduler.cc', |
| 461 'base/task_scheduler/task_scheduler_impl.cc', | 460 'base/task_scheduler/task_scheduler_impl.cc', |
| 462 'base/task_scheduler/task_tracker.cc', | 461 'base/task_scheduler/task_tracker.cc', |
| 463 'base/task_scheduler/task_traits.cc', | 462 'base/task_scheduler/task_traits.cc', |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 cmd.append('-v') | 738 cmd.append('-v') |
| 740 cmd.append('gn') | 739 cmd.append('gn') |
| 741 check_call(cmd) | 740 check_call(cmd) |
| 742 | 741 |
| 743 if not options.debug and not is_win: | 742 if not options.debug and not is_win: |
| 744 check_call(['strip', os.path.join(build_dir, 'gn')]) | 743 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 745 | 744 |
| 746 | 745 |
| 747 if __name__ == '__main__': | 746 if __name__ == '__main__': |
| 748 sys.exit(main(sys.argv[1:])) | 747 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |