| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 'base/synchronization/cancellation_flag.cc', | 284 'base/synchronization/cancellation_flag.cc', |
| 285 'base/synchronization/lock.cc', | 285 'base/synchronization/lock.cc', |
| 286 'base/sys_info.cc', | 286 'base/sys_info.cc', |
| 287 'base/task_runner.cc', | 287 'base/task_runner.cc', |
| 288 'base/third_party/dmg_fp/dtoa_wrapper.cc', | 288 'base/third_party/dmg_fp/dtoa_wrapper.cc', |
| 289 'base/third_party/dmg_fp/g_fmt.cc', | 289 'base/third_party/dmg_fp/g_fmt.cc', |
| 290 'base/third_party/icu/icu_utf.cc', | 290 'base/third_party/icu/icu_utf.cc', |
| 291 'base/third_party/nspr/prtime.cc', | 291 'base/third_party/nspr/prtime.cc', |
| 292 'base/threading/non_thread_safe_impl.cc', | 292 'base/threading/non_thread_safe_impl.cc', |
| 293 'base/threading/post_task_and_reply_impl.cc', | 293 'base/threading/post_task_and_reply_impl.cc', |
| 294 'base/threading/sequenced_task_runner_handle.cc', | |
| 295 'base/threading/sequenced_worker_pool.cc', | 294 'base/threading/sequenced_worker_pool.cc', |
| 296 'base/threading/simple_thread.cc', | 295 'base/threading/simple_thread.cc', |
| 296 'base/threading/task_runner_handle.cc', |
| 297 'base/threading/thread.cc', | 297 'base/threading/thread.cc', |
| 298 'base/threading/thread_checker_impl.cc', | 298 'base/threading/thread_checker_impl.cc', |
| 299 'base/threading/thread_collision_warner.cc', | 299 'base/threading/thread_collision_warner.cc', |
| 300 'base/threading/thread_id_name_manager.cc', | 300 'base/threading/thread_id_name_manager.cc', |
| 301 'base/threading/thread_local_storage.cc', | 301 'base/threading/thread_local_storage.cc', |
| 302 'base/threading/thread_restrictions.cc', | 302 'base/threading/thread_restrictions.cc', |
| 303 'base/threading/thread_task_runner_handle.cc', | |
| 304 'base/threading/worker_pool.cc', | 303 'base/threading/worker_pool.cc', |
| 305 'base/time/time.cc', | 304 'base/time/time.cc', |
| 306 'base/timer/elapsed_timer.cc', | 305 'base/timer/elapsed_timer.cc', |
| 307 'base/timer/timer.cc', | 306 'base/timer/timer.cc', |
| 308 'base/trace_event/heap_profiler_allocation_context.cc', | 307 'base/trace_event/heap_profiler_allocation_context.cc', |
| 309 'base/trace_event/heap_profiler_allocation_context_tracker.cc', | 308 'base/trace_event/heap_profiler_allocation_context_tracker.cc', |
| 310 'base/trace_event/heap_profiler_allocation_register.cc', | 309 'base/trace_event/heap_profiler_allocation_register.cc', |
| 311 'base/trace_event/heap_profiler_heap_dump_writer.cc', | 310 'base/trace_event/heap_profiler_heap_dump_writer.cc', |
| 312 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', | 311 'base/trace_event/heap_profiler_stack_frame_deduplicator.cc', |
| 313 'base/trace_event/heap_profiler_type_name_deduplicator.cc', | 312 'base/trace_event/heap_profiler_type_name_deduplicator.cc', |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 cmd.append('-v') | 525 cmd.append('-v') |
| 527 cmd.append('gn') | 526 cmd.append('gn') |
| 528 check_call(cmd) | 527 check_call(cmd) |
| 529 | 528 |
| 530 if not options.debug: | 529 if not options.debug: |
| 531 check_call(['strip', os.path.join(build_dir, 'gn')]) | 530 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 532 | 531 |
| 533 | 532 |
| 534 if __name__ == '__main__': | 533 if __name__ == '__main__': |
| 535 sys.exit(main(sys.argv[1:])) | 534 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |