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

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

Issue 2406703002: tracing: remove sampling state profiler (Closed)
Patch Set: . Created 4 years, 2 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 | « third_party/WebKit/Source/platform/heap/ThreadState.cpp ('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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 'base/trace_event/process_memory_maps.cc', 497 'base/trace_event/process_memory_maps.cc',
498 'base/trace_event/process_memory_totals.cc', 498 'base/trace_event/process_memory_totals.cc',
499 'base/trace_event/trace_buffer.cc', 499 'base/trace_event/trace_buffer.cc',
500 'base/trace_event/trace_config.cc', 500 'base/trace_event/trace_config.cc',
501 'base/trace_event/trace_event_argument.cc', 501 'base/trace_event/trace_event_argument.cc',
502 'base/trace_event/trace_event_impl.cc', 502 'base/trace_event/trace_event_impl.cc',
503 'base/trace_event/trace_event_memory_overhead.cc', 503 'base/trace_event/trace_event_memory_overhead.cc',
504 'base/trace_event/trace_event_synthetic_delay.cc', 504 'base/trace_event/trace_event_synthetic_delay.cc',
505 'base/trace_event/trace_log.cc', 505 'base/trace_event/trace_log.cc',
506 'base/trace_event/trace_log_constants.cc', 506 'base/trace_event/trace_log_constants.cc',
507 'base/trace_event/trace_sampling_thread.cc',
508 'base/trace_event/tracing_agent.cc', 507 'base/trace_event/tracing_agent.cc',
509 'base/tracked_objects.cc', 508 'base/tracked_objects.cc',
510 'base/tracking_info.cc', 509 'base/tracking_info.cc',
511 'base/values.cc', 510 'base/values.cc',
512 'base/vlog.cc', 511 'base/vlog.cc',
513 ]) 512 ])
514 513
515 if is_posix: 514 if is_posix:
516 static_libraries['base']['sources'].extend([ 515 static_libraries['base']['sources'].extend([
517 'base/base_paths_posix.cc', 516 'base/base_paths_posix.cc',
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
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:]))
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/heap/ThreadState.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698