| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 'base/metrics/sample_map.cc', | 207 'base/metrics/sample_map.cc', |
| 208 'base/metrics/sample_vector.cc', | 208 'base/metrics/sample_vector.cc', |
| 209 'base/metrics/sparse_histogram.cc', | 209 'base/metrics/sparse_histogram.cc', |
| 210 'base/metrics/statistics_recorder.cc', | 210 'base/metrics/statistics_recorder.cc', |
| 211 'base/path_service.cc', | 211 'base/path_service.cc', |
| 212 'base/pending_task.cc', | 212 'base/pending_task.cc', |
| 213 'base/pickle.cc', | 213 'base/pickle.cc', |
| 214 'base/process/kill.cc', | 214 'base/process/kill.cc', |
| 215 'base/process/process_iterator.cc', | 215 'base/process/process_iterator.cc', |
| 216 'base/process/process_metrics.cc', | 216 'base/process/process_metrics.cc', |
| 217 'base/profiler/alternate_timer.cc', | |
| 218 'base/profiler/tracked_time.cc', | 217 'base/profiler/tracked_time.cc', |
| 219 'base/run_loop.cc', | 218 'base/run_loop.cc', |
| 220 'base/sequence_checker_impl.cc', | 219 'base/sequence_checker_impl.cc', |
| 221 'base/sequenced_task_runner.cc', | 220 'base/sequenced_task_runner.cc', |
| 222 'base/sha1_portable.cc', | 221 'base/sha1_portable.cc', |
| 223 'base/strings/pattern.cc', | 222 'base/strings/pattern.cc', |
| 224 'base/strings/string16.cc', | 223 'base/strings/string16.cc', |
| 225 'base/strings/string_number_conversions.cc', | 224 'base/strings/string_number_conversions.cc', |
| 226 'base/strings/string_piece.cc', | 225 'base/strings/string_piece.cc', |
| 227 'base/strings/string_split.cc', | 226 'base/strings/string_split.cc', |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 cmd.append('-v') | 459 cmd.append('-v') |
| 461 cmd.append('gn') | 460 cmd.append('gn') |
| 462 check_call(cmd) | 461 check_call(cmd) |
| 463 | 462 |
| 464 if not options.debug: | 463 if not options.debug: |
| 465 check_call(['strip', os.path.join(build_dir, 'gn')]) | 464 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 466 | 465 |
| 467 | 466 |
| 468 if __name__ == '__main__': | 467 if __name__ == '__main__': |
| 469 sys.exit(main(sys.argv[1:])) | 468 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |