| 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 'base/process/kill_posix.cc', | 525 'base/process/kill_posix.cc', |
| 526 'base/process/process_handle_posix.cc', | 526 'base/process/process_handle_posix.cc', |
| 527 'base/process/process_metrics_posix.cc', | 527 'base/process/process_metrics_posix.cc', |
| 528 'base/process/process_posix.cc', | 528 'base/process/process_posix.cc', |
| 529 'base/strings/string16.cc', | 529 'base/strings/string16.cc', |
| 530 'base/synchronization/condition_variable_posix.cc', | 530 'base/synchronization/condition_variable_posix.cc', |
| 531 'base/synchronization/lock_impl_posix.cc', | 531 'base/synchronization/lock_impl_posix.cc', |
| 532 'base/synchronization/read_write_lock_posix.cc', | 532 'base/synchronization/read_write_lock_posix.cc', |
| 533 'base/synchronization/waitable_event_posix.cc', | 533 'base/synchronization/waitable_event_posix.cc', |
| 534 'base/sys_info_posix.cc', | 534 'base/sys_info_posix.cc', |
| 535 'base/task_scheduler/task_tracker_posix.cc', |
| 535 'base/threading/platform_thread_internal_posix.cc', | 536 'base/threading/platform_thread_internal_posix.cc', |
| 536 'base/threading/platform_thread_posix.cc', | 537 'base/threading/platform_thread_posix.cc', |
| 537 'base/threading/thread_local_storage_posix.cc', | 538 'base/threading/thread_local_storage_posix.cc', |
| 538 'base/threading/worker_pool_posix.cc', | 539 'base/threading/worker_pool_posix.cc', |
| 539 'base/time/time_posix.cc', | 540 'base/time/time_posix.cc', |
| 540 'base/trace_event/heap_profiler_allocation_register_posix.cc', | 541 'base/trace_event/heap_profiler_allocation_register_posix.cc', |
| 541 ]) | 542 ]) |
| 542 static_libraries['libevent'] = { | 543 static_libraries['libevent'] = { |
| 543 'sources': [ | 544 'sources': [ |
| 544 'base/third_party/libevent/buffer.c', | 545 'base/third_party/libevent/buffer.c', |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 738 cmd.append('-v') | 739 cmd.append('-v') |
| 739 cmd.append('gn') | 740 cmd.append('gn') |
| 740 check_call(cmd) | 741 check_call(cmd) |
| 741 | 742 |
| 742 if not options.debug and not is_win: | 743 if not options.debug and not is_win: |
| 743 check_call(['strip', os.path.join(build_dir, 'gn')]) | 744 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 744 | 745 |
| 745 | 746 |
| 746 if __name__ == '__main__': | 747 if __name__ == '__main__': |
| 747 sys.exit(main(sys.argv[1:])) | 748 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |