| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 'base/files/scoped_file.cc', | 182 'base/files/scoped_file.cc', |
| 183 'base/hash.cc', | 183 'base/hash.cc', |
| 184 'base/json/json_parser.cc', | 184 'base/json/json_parser.cc', |
| 185 'base/json/json_reader.cc', | 185 'base/json/json_reader.cc', |
| 186 'base/json/json_string_value_serializer.cc', | 186 'base/json/json_string_value_serializer.cc', |
| 187 'base/json/json_writer.cc', | 187 'base/json/json_writer.cc', |
| 188 'base/json/string_escape.cc', | 188 'base/json/string_escape.cc', |
| 189 'base/lazy_instance.cc', | 189 'base/lazy_instance.cc', |
| 190 'base/location.cc', | 190 'base/location.cc', |
| 191 'base/logging.cc', | 191 'base/logging.cc', |
| 192 'base/md5.cc', |
| 192 'base/memory/ref_counted.cc', | 193 'base/memory/ref_counted.cc', |
| 193 'base/memory/ref_counted_memory.cc', | 194 'base/memory/ref_counted_memory.cc', |
| 194 'base/memory/singleton.cc', | 195 'base/memory/singleton.cc', |
| 195 'base/memory/weak_ptr.cc', | 196 'base/memory/weak_ptr.cc', |
| 196 'base/message_loop/incoming_task_queue.cc', | 197 'base/message_loop/incoming_task_queue.cc', |
| 197 'base/message_loop/message_loop.cc', | 198 'base/message_loop/message_loop.cc', |
| 198 'base/message_loop/message_loop_task_runner.cc', | 199 'base/message_loop/message_loop_task_runner.cc', |
| 199 'base/message_loop/message_pump.cc', | 200 'base/message_loop/message_pump.cc', |
| 200 'base/message_loop/message_pump_default.cc', | 201 'base/message_loop/message_pump_default.cc', |
| 201 'base/metrics/bucket_ranges.cc', | 202 'base/metrics/bucket_ranges.cc', |
| 202 'base/metrics/histogram.cc', | 203 'base/metrics/histogram.cc', |
| 203 'base/metrics/histogram_base.cc', | 204 'base/metrics/histogram_base.cc', |
| 204 'base/metrics/histogram_samples.cc', | 205 'base/metrics/histogram_samples.cc', |
| 206 'base/metrics/metrics_hashes.cc', |
| 205 'base/metrics/sample_map.cc', | 207 'base/metrics/sample_map.cc', |
| 206 'base/metrics/sample_vector.cc', | 208 'base/metrics/sample_vector.cc', |
| 207 'base/metrics/sparse_histogram.cc', | 209 'base/metrics/sparse_histogram.cc', |
| 208 'base/metrics/statistics_recorder.cc', | 210 'base/metrics/statistics_recorder.cc', |
| 209 'base/path_service.cc', | 211 'base/path_service.cc', |
| 210 'base/pending_task.cc', | 212 'base/pending_task.cc', |
| 211 'base/pickle.cc', | 213 'base/pickle.cc', |
| 212 'base/process/kill.cc', | 214 'base/process/kill.cc', |
| 213 'base/process/process_iterator.cc', | 215 'base/process/process_iterator.cc', |
| 214 'base/process/process_metrics.cc', | 216 'base/process/process_metrics.cc', |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 cmd.append('-v') | 460 cmd.append('-v') |
| 459 cmd.append('gn') | 461 cmd.append('gn') |
| 460 check_call(cmd) | 462 check_call(cmd) |
| 461 | 463 |
| 462 if not options.debug: | 464 if not options.debug: |
| 463 check_call(['strip', os.path.join(build_dir, 'gn')]) | 465 check_call(['strip', os.path.join(build_dir, 'gn')]) |
| 464 | 466 |
| 465 | 467 |
| 466 if __name__ == '__main__': | 468 if __name__ == '__main__': |
| 467 sys.exit(main(sys.argv[1:])) | 469 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |