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

Side by Side Diff: base/base.gyp

Issue 17910003: Split memory-related routines out of base/process_util.h into base/process/memory.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 'prefs/mock_pref_change_callback.h', 556 'prefs/mock_pref_change_callback.h',
557 'prefs/overlay_user_pref_store_unittest.cc', 557 'prefs/overlay_user_pref_store_unittest.cc',
558 'prefs/pref_change_registrar_unittest.cc', 558 'prefs/pref_change_registrar_unittest.cc',
559 'prefs/pref_member_unittest.cc', 559 'prefs/pref_member_unittest.cc',
560 'prefs/pref_notifier_impl_unittest.cc', 560 'prefs/pref_notifier_impl_unittest.cc',
561 'prefs/pref_service_unittest.cc', 561 'prefs/pref_service_unittest.cc',
562 'prefs/pref_value_map_unittest.cc', 562 'prefs/pref_value_map_unittest.cc',
563 'prefs/pref_value_store_unittest.cc', 563 'prefs/pref_value_store_unittest.cc',
564 'process_util_unittest.cc', 564 'process_util_unittest.cc',
565 'process_util_unittest_ios.cc', 565 'process_util_unittest_ios.cc',
566 'process_util_unittest_mac.h', 566 'process/memory_unittest.cc',
567 'process_util_unittest_mac.mm', 567 'process/memory_unittest_mac.h',
568 'process/memory_unittest_mac.mm',
568 'profiler/tracked_time_unittest.cc', 569 'profiler/tracked_time_unittest.cc',
569 'rand_util_unittest.cc', 570 'rand_util_unittest.cc',
570 'safe_numerics_unittest.cc', 571 'safe_numerics_unittest.cc',
571 'safe_numerics_unittest.nc', 572 'safe_numerics_unittest.nc',
572 'scoped_clear_errno_unittest.cc', 573 'scoped_clear_errno_unittest.cc',
573 'scoped_native_library_unittest.cc', 574 'scoped_native_library_unittest.cc',
574 'scoped_observer.h', 575 'scoped_observer.h',
575 'security_unittest.cc', 576 'security_unittest.cc',
576 'sequence_checker_unittest.cc', 577 'sequence_checker_unittest.cc',
577 'sequence_checker_impl_unittest.cc', 578 'sequence_checker_impl_unittest.cc',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 }], 679 }],
679 ], 680 ],
680 'sources!': [ 681 'sources!': [
681 # Broken on Android, and already disabled there. 682 # Broken on Android, and already disabled there.
682 'debug/stack_trace_unittest.cc', 683 'debug/stack_trace_unittest.cc',
683 ], 684 ],
684 }], 685 }],
685 ['OS == "ios" and _toolset != "host"', { 686 ['OS == "ios" and _toolset != "host"', {
686 'sources/': [ 687 'sources/': [
687 # Only test the iOS-meaningful portion of process_utils. 688 # Only test the iOS-meaningful portion of process_utils.
688 ['exclude', '^process_util_unittest'], 689 ['exclude', '^process_util_unittest\\.cc$'],
690 ['exclude', '^process/memory_unittest'],
689 ['include', '^process_util_unittest_ios\\.cc$'], 691 ['include', '^process_util_unittest_ios\\.cc$'],
690 # Requires spawning processes. 692 # Requires spawning processes.
691 ['exclude', '^metrics/stats_table_unittest\\.cc$'], 693 ['exclude', '^metrics/stats_table_unittest\\.cc$'],
692 # iOS does not use message_pump_libevent. 694 # iOS does not use message_pump_libevent.
693 ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'], 695 ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'],
694 ], 696 ],
695 'conditions': [ 697 'conditions': [
696 ['coverage != 0', { 698 ['coverage != 0', {
697 'sources!': [ 699 'sources!': [
698 # These sources can't be built with coverage due to a toolchain 700 # These sources can't be built with coverage due to a toolchain
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
1298 'base_unittests.isolate', 1300 'base_unittests.isolate',
1299 ], 1301 ],
1300 'sources': [ 1302 'sources': [
1301 'base_unittests.isolate', 1303 'base_unittests.isolate',
1302 ], 1304 ],
1303 }, 1305 },
1304 ], 1306 ],
1305 }], 1307 }],
1306 ], 1308 ],
1307 } 1309 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698