Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: tools/gn/bootstrap/bootstrap.py

Issue 1640223002: profiler: cleanup unused alternate_timer code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: doc Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/metrics/profiler/profiler_metrics_provider.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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:]))
OLDNEW
« no previous file with comments | « components/metrics/profiler/profiler_metrics_provider.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698