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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 'base/json/json_string_value_serializer.cc', | 428 'base/json/json_string_value_serializer.cc', |
429 'base/json/json_writer.cc', | 429 'base/json/json_writer.cc', |
430 'base/json/string_escape.cc', | 430 'base/json/string_escape.cc', |
431 'base/lazy_instance.cc', | 431 'base/lazy_instance.cc', |
432 'base/location.cc', | 432 'base/location.cc', |
433 'base/logging.cc', | 433 'base/logging.cc', |
434 'base/md5.cc', | 434 'base/md5.cc', |
435 'base/memory/ref_counted.cc', | 435 'base/memory/ref_counted.cc', |
436 'base/memory/ref_counted_memory.cc', | 436 'base/memory/ref_counted_memory.cc', |
437 'base/memory/singleton.cc', | 437 'base/memory/singleton.cc', |
| 438 'base/memory/shared_memory_handle.cc', |
438 'base/memory/shared_memory_helper.cc', | 439 'base/memory/shared_memory_helper.cc', |
439 'base/memory/weak_ptr.cc', | 440 'base/memory/weak_ptr.cc', |
440 'base/message_loop/incoming_task_queue.cc', | 441 'base/message_loop/incoming_task_queue.cc', |
441 'base/message_loop/message_loop.cc', | 442 'base/message_loop/message_loop.cc', |
442 'base/message_loop/message_loop_task_runner.cc', | 443 'base/message_loop/message_loop_task_runner.cc', |
443 'base/message_loop/message_pump.cc', | 444 'base/message_loop/message_pump.cc', |
444 'base/message_loop/message_pump_default.cc', | 445 'base/message_loop/message_pump_default.cc', |
445 'base/metrics/bucket_ranges.cc', | 446 'base/metrics/bucket_ranges.cc', |
446 'base/metrics/field_trial.cc', | 447 'base/metrics/field_trial.cc', |
447 'base/metrics/field_trial_param_associator.cc', | 448 'base/metrics/field_trial_param_associator.cc', |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 'base/trace_event/trace_event_argument.cc', | 557 'base/trace_event/trace_event_argument.cc', |
557 'base/trace_event/trace_event_filter.cc', | 558 'base/trace_event/trace_event_filter.cc', |
558 'base/trace_event/trace_event_impl.cc', | 559 'base/trace_event/trace_event_impl.cc', |
559 'base/trace_event/trace_event_memory_overhead.cc', | 560 'base/trace_event/trace_event_memory_overhead.cc', |
560 'base/trace_event/trace_event_synthetic_delay.cc', | 561 'base/trace_event/trace_event_synthetic_delay.cc', |
561 'base/trace_event/trace_log.cc', | 562 'base/trace_event/trace_log.cc', |
562 'base/trace_event/trace_log_constants.cc', | 563 'base/trace_event/trace_log_constants.cc', |
563 'base/trace_event/tracing_agent.cc', | 564 'base/trace_event/tracing_agent.cc', |
564 'base/tracked_objects.cc', | 565 'base/tracked_objects.cc', |
565 'base/tracking_info.cc', | 566 'base/tracking_info.cc', |
| 567 'base/unguessable_token.cc', |
566 'base/values.cc', | 568 'base/values.cc', |
567 'base/vlog.cc', | 569 'base/vlog.cc', |
568 ]) | 570 ]) |
569 | 571 |
570 if is_posix: | 572 if is_posix: |
571 static_libraries['base']['sources'].extend([ | 573 static_libraries['base']['sources'].extend([ |
572 'base/base_paths_posix.cc', | 574 'base/base_paths_posix.cc', |
573 'base/debug/debugger_posix.cc', | 575 'base/debug/debugger_posix.cc', |
574 'base/debug/stack_trace_posix.cc', | 576 'base/debug/stack_trace_posix.cc', |
575 'base/files/file_enumerator_posix.cc', | 577 'base/files/file_enumerator_posix.cc', |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 cmd.append('-v') | 818 cmd.append('-v') |
817 cmd.append('gn') | 819 cmd.append('gn') |
818 check_call(cmd) | 820 check_call(cmd) |
819 | 821 |
820 if not options.debug and not is_win: | 822 if not options.debug and not is_win: |
821 check_call(['strip', os.path.join(build_dir, 'gn')]) | 823 check_call(['strip', os.path.join(build_dir, 'gn')]) |
822 | 824 |
823 | 825 |
824 if __name__ == '__main__': | 826 if __name__ == '__main__': |
825 sys.exit(main(sys.argv[1:])) | 827 sys.exit(main(sys.argv[1:])) |
OLD | NEW |