| 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 'base/hash.cc', | 390 'base/hash.cc', |
| 391 'base/json/json_parser.cc', | 391 'base/json/json_parser.cc', |
| 392 'base/json/json_reader.cc', | 392 'base/json/json_reader.cc', |
| 393 'base/json/json_string_value_serializer.cc', | 393 'base/json/json_string_value_serializer.cc', |
| 394 'base/json/json_writer.cc', | 394 'base/json/json_writer.cc', |
| 395 'base/json/string_escape.cc', | 395 'base/json/string_escape.cc', |
| 396 'base/lazy_instance.cc', | 396 'base/lazy_instance.cc', |
| 397 'base/location.cc', | 397 'base/location.cc', |
| 398 'base/logging.cc', | 398 'base/logging.cc', |
| 399 'base/md5.cc', | 399 'base/md5.cc', |
| 400 'base/memory/ref_counted.cc', | |
| 401 'base/memory/ref_counted_memory.cc', | 400 'base/memory/ref_counted_memory.cc', |
| 402 'base/memory/singleton.cc', | 401 'base/memory/singleton.cc', |
| 403 'base/memory/weak_ptr.cc', | 402 'base/memory/weak_ptr.cc', |
| 404 'base/message_loop/incoming_task_queue.cc', | 403 'base/message_loop/incoming_task_queue.cc', |
| 405 'base/message_loop/message_loop.cc', | 404 'base/message_loop/message_loop.cc', |
| 406 'base/message_loop/message_loop_task_runner.cc', | 405 'base/message_loop/message_loop_task_runner.cc', |
| 407 'base/message_loop/message_pump.cc', | 406 'base/message_loop/message_pump.cc', |
| 408 'base/message_loop/message_pump_default.cc', | 407 'base/message_loop/message_pump_default.cc', |
| 409 'base/metrics/bucket_ranges.cc', | 408 'base/metrics/bucket_ranges.cc', |
| 410 'base/metrics/histogram.cc', | 409 'base/metrics/histogram.cc', |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 cmd.append('-v') | 740 cmd.append('-v') |
| 742 cmd.append('gn') | 741 cmd.append('gn') |
| 743 check_call(cmd) | 742 check_call(cmd) |
| 744 | 743 |
| 745 if not options.debug and not is_win: | 744 if not options.debug and not is_win: |
| 746 check_call(['strip', os.path.join(build_dir, 'gn')]) | 745 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 747 | 746 |
| 748 | 747 |
| 749 if __name__ == '__main__': | 748 if __name__ == '__main__': |
| 750 sys.exit(main(sys.argv[1:])) | 749 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |