| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 'base/pickle.cc', | 263 'base/pickle.cc', |
| 264 'base/process/kill.cc', | 264 'base/process/kill.cc', |
| 265 'base/process/process_iterator.cc', | 265 'base/process/process_iterator.cc', |
| 266 'base/process/process_metrics.cc', | 266 'base/process/process_metrics.cc', |
| 267 'base/profiler/scoped_profile.cc', | 267 'base/profiler/scoped_profile.cc', |
| 268 'base/profiler/scoped_tracker.cc', | 268 'base/profiler/scoped_tracker.cc', |
| 269 'base/profiler/tracked_time.cc', | 269 'base/profiler/tracked_time.cc', |
| 270 'base/run_loop.cc', | 270 'base/run_loop.cc', |
| 271 'base/sequence_checker_impl.cc', | 271 'base/sequence_checker_impl.cc', |
| 272 'base/sequenced_task_runner.cc', | 272 'base/sequenced_task_runner.cc', |
| 273 'base/sha1_portable.cc', | 273 'base/sha1.cc', |
| 274 'base/strings/pattern.cc', | 274 'base/strings/pattern.cc', |
| 275 'base/strings/string16.cc', | 275 'base/strings/string16.cc', |
| 276 'base/strings/string_number_conversions.cc', | 276 'base/strings/string_number_conversions.cc', |
| 277 'base/strings/string_piece.cc', | 277 'base/strings/string_piece.cc', |
| 278 'base/strings/string_split.cc', | 278 'base/strings/string_split.cc', |
| 279 'base/strings/string_util.cc', | 279 'base/strings/string_util.cc', |
| 280 'base/strings/string_util_constants.cc', | 280 'base/strings/string_util_constants.cc', |
| 281 'base/strings/stringprintf.cc', | 281 'base/strings/stringprintf.cc', |
| 282 'base/strings/utf_string_conversion_utils.cc', | 282 'base/strings/utf_string_conversion_utils.cc', |
| 283 'base/strings/utf_string_conversions.cc', | 283 'base/strings/utf_string_conversions.cc', |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 cmd.append('-v') | 524 cmd.append('-v') |
| 525 cmd.append('gn') | 525 cmd.append('gn') |
| 526 check_call(cmd) | 526 check_call(cmd) |
| 527 | 527 |
| 528 if not options.debug: | 528 if not options.debug: |
| 529 check_call(['strip', os.path.join(build_dir, 'gn')]) | 529 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 530 | 530 |
| 531 | 531 |
| 532 if __name__ == '__main__': | 532 if __name__ == '__main__': |
| 533 sys.exit(main(sys.argv[1:])) | 533 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |