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

Side by Side Diff: trunk/src/base/base.gypi

Issue 257383004: Revert 267170 "Use DiscardableMemoryManager on Android." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 7 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 | « trunk/src/base/base.gyp ('k') | trunk/src/base/memory/discardable_memory.h » ('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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 'base_i18n_target': 0, 9 'base_i18n_target': 0,
10 }, 10 },
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'mac/scoped_sending_event.mm', 297 'mac/scoped_sending_event.mm',
298 'mac/scoped_typeref.h', 298 'mac/scoped_typeref.h',
299 'mac/sdk_forward_declarations.h', 299 'mac/sdk_forward_declarations.h',
300 'macros.h', 300 'macros.h',
301 'md5.cc', 301 'md5.cc',
302 'md5.h', 302 'md5.h',
303 'memory/aligned_memory.cc', 303 'memory/aligned_memory.cc',
304 'memory/aligned_memory.h', 304 'memory/aligned_memory.h',
305 'memory/discardable_memory.cc', 305 'memory/discardable_memory.cc',
306 'memory/discardable_memory.h', 306 'memory/discardable_memory.h',
307 'memory/discardable_memory_allocator_android.cc',
308 'memory/discardable_memory_allocator_android.h',
307 'memory/discardable_memory_android.cc', 309 'memory/discardable_memory_android.cc',
308 'memory/discardable_memory_emulated.cc', 310 'memory/discardable_memory_emulated.cc',
309 'memory/discardable_memory_emulated.h', 311 'memory/discardable_memory_emulated.h',
310 'memory/discardable_memory_linux.cc', 312 'memory/discardable_memory_linux.cc',
311 'memory/discardable_memory_mac.cc', 313 'memory/discardable_memory_mac.cc',
312 'memory/discardable_memory_malloc.cc', 314 'memory/discardable_memory_malloc.cc',
313 'memory/discardable_memory_malloc.h', 315 'memory/discardable_memory_malloc.h',
314 'memory/discardable_memory_manager.cc', 316 'memory/discardable_memory_manager.cc',
315 'memory/discardable_memory_manager.h', 317 'memory/discardable_memory_manager.h',
316 'memory/discardable_memory_win.cc', 318 'memory/discardable_memory_win.cc',
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 'rand_util_posix.cc', 763 'rand_util_posix.cc',
762 'scoped_native_library.cc', 764 'scoped_native_library.cc',
763 'files/scoped_temp_dir.cc', 765 'files/scoped_temp_dir.cc',
764 'sys_info_posix.cc', 766 'sys_info_posix.cc',
765 'third_party/dynamic_annotations/dynamic_annotations.c', 767 'third_party/dynamic_annotations/dynamic_annotations.c',
766 ], 768 ],
767 'sources/': [ 769 'sources/': [
768 ['include', '^threading/platform_thread_linux\\.cc$'], 770 ['include', '^threading/platform_thread_linux\\.cc$'],
769 ], 771 ],
770 }], 772 }],
771 ['OS == "android" and _toolset == "target"', {
772 'sources': [
773 'memory/discardable_memory_ashmem_allocator.cc',
774 'memory/discardable_memory_ashmem_allocator.h',
775 'memory/discardable_memory_ashmem.cc',
776 'memory/discardable_memory_ashmem.h',
777 ],
778 }],
779 ['OS == "android" and >(nacl_untrusted_build)==0', { 773 ['OS == "android" and >(nacl_untrusted_build)==0', {
780 'sources!': [ 774 'sources!': [
781 'base_paths_posix.cc', 775 'base_paths_posix.cc',
782 'files/file_path_watcher_kqueue.cc', 776 'files/file_path_watcher_kqueue.cc',
783 'files/file_path_watcher_stub.cc', 777 'files/file_path_watcher_stub.cc',
784 'power_monitor/power_monitor_device_source_posix.cc', 778 'power_monitor/power_monitor_device_source_posix.cc',
785 ], 779 ],
786 'sources/': [ 780 'sources/': [
787 ['include', '^debug/proc_maps_linux\\.cc$'], 781 ['include', '^debug/proc_maps_linux\\.cc$'],
788 ['include', '^files/file_path_watcher_linux\\.cc$'], 782 ['include', '^files/file_path_watcher_linux\\.cc$'],
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
961 'i18n/time_formatting.h', 955 'i18n/time_formatting.h',
962 'i18n/timezone.cc', 956 'i18n/timezone.cc',
963 'i18n/timezone.h', 957 'i18n/timezone.h',
964 'i18n/utf8_validator_tables.cc', 958 'i18n/utf8_validator_tables.cc',
965 'i18n/utf8_validator_tables.h', 959 'i18n/utf8_validator_tables.h',
966 ], 960 ],
967 }] 961 }]
968 ], 962 ],
969 }, 963 },
970 } 964 }
OLDNEW
« no previous file with comments | « trunk/src/base/base.gyp ('k') | trunk/src/base/memory/discardable_memory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698