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

Side by Side Diff: base/base.gypi

Issue 195863005: Use DiscardableMemoryManager on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use DiscardableMemoryController on Android Created 6 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 | Annotate | Revision Log
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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 'mac/scoped_sending_event.mm', 307 'mac/scoped_sending_event.mm',
308 'mac/scoped_typeref.h', 308 'mac/scoped_typeref.h',
309 'mac/sdk_forward_declarations.h', 309 'mac/sdk_forward_declarations.h',
310 'macros.h', 310 'macros.h',
311 'md5.cc', 311 'md5.cc',
312 'md5.h', 312 'md5.h',
313 'memory/aligned_memory.cc', 313 'memory/aligned_memory.cc',
314 'memory/aligned_memory.h', 314 'memory/aligned_memory.h',
315 'memory/discardable_memory.cc', 315 'memory/discardable_memory.cc',
316 'memory/discardable_memory.h', 316 'memory/discardable_memory.h',
317 'memory/discardable_memory_allocator_android.cc',
318 'memory/discardable_memory_allocator_android.h',
319 'memory/discardable_memory_android.cc', 317 'memory/discardable_memory_android.cc',
320 'memory/discardable_memory_emulated.cc', 318 'memory/discardable_memory_emulated.cc',
321 'memory/discardable_memory_emulated.h', 319 'memory/discardable_memory_emulated.h',
322 'memory/discardable_memory_linux.cc', 320 'memory/discardable_memory_linux.cc',
323 'memory/discardable_memory_mac.cc', 321 'memory/discardable_memory_mac.cc',
324 'memory/discardable_memory_malloc.cc', 322 'memory/discardable_memory_malloc.cc',
325 'memory/discardable_memory_malloc.h', 323 'memory/discardable_memory_malloc.h',
326 'memory/discardable_memory_manager.cc', 324 'memory/discardable_memory_manager.cc',
327 'memory/discardable_memory_manager.h', 325 'memory/discardable_memory_manager.h',
328 'memory/discardable_memory_win.cc', 326 'memory/discardable_memory_win.cc',
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
790 'rand_util_posix.cc', 788 'rand_util_posix.cc',
791 'scoped_native_library.cc', 789 'scoped_native_library.cc',
792 'files/scoped_temp_dir.cc', 790 'files/scoped_temp_dir.cc',
793 'sys_info_posix.cc', 791 'sys_info_posix.cc',
794 'third_party/dynamic_annotations/dynamic_annotations.c', 792 'third_party/dynamic_annotations/dynamic_annotations.c',
795 ], 793 ],
796 'sources/': [ 794 'sources/': [
797 ['include', '^threading/platform_thread_linux\\.cc$'], 795 ['include', '^threading/platform_thread_linux\\.cc$'],
798 ], 796 ],
799 }], 797 }],
798 ['OS == "android" and _toolset == "target"', {
reveman 2014/03/20 19:33:43 what is _toolset == "target" for?
Philippe 2014/03/21 10:17:44 On platforms where cross-compilation is used, we d
799 'sources': [
800 'memory/discardable_memory_allocation_ashmem_factory.cc',
801 'memory/discardable_memory_allocation_ashmem_factory.h',
802 'memory/discardable_memory_ashmem.cc',
803 'memory/discardable_memory_ashmem.h',
804 ],
805 }],
800 ['OS == "android" and >(nacl_untrusted_build)==0', { 806 ['OS == "android" and >(nacl_untrusted_build)==0', {
801 'sources!': [ 807 'sources!': [
802 'base_paths_posix.cc', 808 'base_paths_posix.cc',
803 'files/file_path_watcher_kqueue.cc', 809 'files/file_path_watcher_kqueue.cc',
804 'files/file_path_watcher_stub.cc', 810 'files/file_path_watcher_stub.cc',
805 'power_monitor/power_monitor_device_source_posix.cc', 811 'power_monitor/power_monitor_device_source_posix.cc',
806 ], 812 ],
807 'sources/': [ 813 'sources/': [
808 ['include', '^debug/proc_maps_linux\\.cc$'], 814 ['include', '^debug/proc_maps_linux\\.cc$'],
809 ['include', '^files/file_path_watcher_linux\\.cc$'], 815 ['include', '^files/file_path_watcher_linux\\.cc$'],
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 'i18n/time_formatting.h', 989 'i18n/time_formatting.h',
984 'i18n/timezone.cc', 990 'i18n/timezone.cc',
985 'i18n/timezone.h', 991 'i18n/timezone.h',
986 'i18n/utf8_validator_tables.cc', 992 'i18n/utf8_validator_tables.cc',
987 'i18n/utf8_validator_tables.h', 993 'i18n/utf8_validator_tables.h',
988 ], 994 ],
989 }] 995 }]
990 ], 996 ],
991 }, 997 },
992 } 998 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698