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

Side by Side Diff: base/base.gyp

Issue 1014923002: [tracing] Move GN/gyp build files under trace_event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 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 | « base/BUILD.gn ('k') | base/base.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 'threading/watchdog_unittest.cc', 649 'threading/watchdog_unittest.cc',
650 'threading/worker_pool_posix_unittest.cc', 650 'threading/worker_pool_posix_unittest.cc',
651 'threading/worker_pool_unittest.cc', 651 'threading/worker_pool_unittest.cc',
652 'time/pr_time_unittest.cc', 652 'time/pr_time_unittest.cc',
653 'time/time_unittest.cc', 653 'time/time_unittest.cc',
654 'time/time_win_unittest.cc', 654 'time/time_win_unittest.cc',
655 'timer/hi_res_timer_manager_unittest.cc', 655 'timer/hi_res_timer_manager_unittest.cc',
656 'timer/mock_timer_unittest.cc', 656 'timer/mock_timer_unittest.cc',
657 'timer/timer_unittest.cc', 657 'timer/timer_unittest.cc',
658 'tools_sanity_unittest.cc', 658 'tools_sanity_unittest.cc',
659 'trace_event/memory_allocator_dump_unittest.cc',
660 'trace_event/memory_dump_manager_unittest.cc',
661 'trace_event/process_memory_maps_dump_provider_unittest.cc',
662 'trace_event/process_memory_totals_dump_provider_unittest.cc',
663 'trace_event/trace_event_argument_unittest.cc',
664 'trace_event/trace_event_memory_unittest.cc',
665 'trace_event/trace_event_synthetic_delay_unittest.cc',
666 'trace_event/trace_event_system_stats_monitor_unittest.cc',
667 'trace_event/trace_event_unittest.cc',
668 'trace_event/trace_event_win_unittest.cc',
669 'tracked_objects_unittest.cc', 659 'tracked_objects_unittest.cc',
670 'tuple_unittest.cc', 660 'tuple_unittest.cc',
671 'values_unittest.cc', 661 'values_unittest.cc',
672 'version_unittest.cc', 662 'version_unittest.cc',
673 'vlog_unittest.cc', 663 'vlog_unittest.cc',
674 'win/dllmain.cc', 664 'win/dllmain.cc',
675 'win/enum_variant_unittest.cc', 665 'win/enum_variant_unittest.cc',
676 'win/event_trace_consumer_unittest.cc', 666 'win/event_trace_consumer_unittest.cc',
677 'win/event_trace_controller_unittest.cc', 667 'win/event_trace_controller_unittest.cc',
678 'win/event_trace_provider_unittest.cc', 668 'win/event_trace_provider_unittest.cc',
679 'win/i18n_unittest.cc', 669 'win/i18n_unittest.cc',
680 'win/iunknown_impl_unittest.cc', 670 'win/iunknown_impl_unittest.cc',
681 'win/message_window_unittest.cc', 671 'win/message_window_unittest.cc',
682 'win/object_watcher_unittest.cc', 672 'win/object_watcher_unittest.cc',
683 'win/pe_image_unittest.cc', 673 'win/pe_image_unittest.cc',
684 'win/registry_unittest.cc', 674 'win/registry_unittest.cc',
685 'win/scoped_bstr_unittest.cc', 675 'win/scoped_bstr_unittest.cc',
686 'win/scoped_comptr_unittest.cc', 676 'win/scoped_comptr_unittest.cc',
687 'win/scoped_process_information_unittest.cc', 677 'win/scoped_process_information_unittest.cc',
688 'win/scoped_variant_unittest.cc', 678 'win/scoped_variant_unittest.cc',
689 'win/shortcut_unittest.cc', 679 'win/shortcut_unittest.cc',
690 'win/startup_information_unittest.cc', 680 'win/startup_information_unittest.cc',
691 'win/win_util_unittest.cc', 681 'win/win_util_unittest.cc',
692 'win/wrapped_window_proc_unittest.cc', 682 'win/wrapped_window_proc_unittest.cc',
683 '<@(trace_event_test_sources)',
693 ], 684 ],
694 'dependencies': [ 685 'dependencies': [
695 'base', 686 'base',
696 'base_i18n', 687 'base_i18n',
697 'base_message_loop_tests', 688 'base_message_loop_tests',
698 'base_prefs', 689 'base_prefs',
699 'base_prefs_test_support', 690 'base_prefs_test_support',
700 'base_static', 691 'base_static',
701 'run_all_unittests', 692 'run_all_unittests',
702 'test_support_base', 693 'test_support_base',
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after
1603 'dependencies': [ 1594 'dependencies': [
1604 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1595 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1605 ], 1596 ],
1606 }], 1597 }],
1607 ], 1598 ],
1608 }, 1599 },
1609 ], 1600 ],
1610 }], 1601 }],
1611 ], 1602 ],
1612 } 1603 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698