| 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 'base/strings/string_util.cc', | 480 'base/strings/string_util.cc', |
| 481 'base/strings/string_util_constants.cc', | 481 'base/strings/string_util_constants.cc', |
| 482 'base/strings/stringprintf.cc', | 482 'base/strings/stringprintf.cc', |
| 483 'base/strings/utf_string_conversion_utils.cc', | 483 'base/strings/utf_string_conversion_utils.cc', |
| 484 'base/strings/utf_string_conversions.cc', | 484 'base/strings/utf_string_conversions.cc', |
| 485 'base/synchronization/atomic_flag.cc', | 485 'base/synchronization/atomic_flag.cc', |
| 486 'base/synchronization/lock.cc', | 486 'base/synchronization/lock.cc', |
| 487 'base/sys_info.cc', | 487 'base/sys_info.cc', |
| 488 'base/task_runner.cc', | 488 'base/task_runner.cc', |
| 489 'base/task_scheduler/delayed_task_manager.cc', | 489 'base/task_scheduler/delayed_task_manager.cc', |
| 490 'base/task_scheduler/environment_config.cc', |
| 490 'base/task_scheduler/post_task.cc', | 491 'base/task_scheduler/post_task.cc', |
| 491 'base/task_scheduler/priority_queue.cc', | 492 'base/task_scheduler/priority_queue.cc', |
| 492 'base/task_scheduler/scheduler_lock_impl.cc', | 493 'base/task_scheduler/scheduler_lock_impl.cc', |
| 493 'base/task_scheduler/scheduler_single_thread_task_runner_manager.cc', | 494 'base/task_scheduler/scheduler_single_thread_task_runner_manager.cc', |
| 494 'base/task_scheduler/scheduler_worker.cc', | 495 'base/task_scheduler/scheduler_worker.cc', |
| 495 'base/task_scheduler/scheduler_worker_pool_impl.cc', | 496 'base/task_scheduler/scheduler_worker_pool_impl.cc', |
| 496 'base/task_scheduler/scheduler_worker_pool_params.cc', | 497 'base/task_scheduler/scheduler_worker_pool_params.cc', |
| 497 'base/task_scheduler/scheduler_worker_stack.cc', | 498 'base/task_scheduler/scheduler_worker_stack.cc', |
| 498 'base/task_scheduler/scoped_set_task_priority_for_current_thread.cc', | 499 'base/task_scheduler/scoped_set_task_priority_for_current_thread.cc', |
| 499 'base/task_scheduler/sequence.cc', | 500 'base/task_scheduler/sequence.cc', |
| (...skipping 318 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 |