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

Side by Side Diff: base/base.gypi

Issue 111713008: base: Refactor DiscardableMemoryProvider to build and be tested on all platforms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix native_discardable_memory on ios. Created 7 years 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 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 'mac/scoped_nsautorelease_pool.mm', 285 'mac/scoped_nsautorelease_pool.mm',
286 'mac/scoped_nsexception_enabler.h', 286 'mac/scoped_nsexception_enabler.h',
287 'mac/scoped_nsexception_enabler.mm', 287 'mac/scoped_nsexception_enabler.mm',
288 'mac/scoped_nsobject.h', 288 'mac/scoped_nsobject.h',
289 'mac/scoped_sending_event.h', 289 'mac/scoped_sending_event.h',
290 'mac/scoped_sending_event.mm', 290 'mac/scoped_sending_event.mm',
291 'mac/sdk_forward_declarations.h', 291 'mac/sdk_forward_declarations.h',
292 'memory/aligned_memory.cc', 292 'memory/aligned_memory.cc',
293 'memory/aligned_memory.h', 293 'memory/aligned_memory.h',
294 'memory/discardable_memory.h', 294 'memory/discardable_memory.h',
295 'memory/discardable_memory_allocator_android.cc',
295 'memory/discardable_memory_allocator_android.h', 296 'memory/discardable_memory_allocator_android.h',
296 'memory/discardable_memory_allocator_android.cc',
297 'memory/discardable_memory_android.cc', 297 'memory/discardable_memory_android.cc',
298 'memory/discardable_memory_android.h',
298 'memory/discardable_memory_emulated.cc', 299 'memory/discardable_memory_emulated.cc',
300 'memory/discardable_memory_emulated.h',
301 'memory/discardable_memory_linux.cc',
299 'memory/discardable_memory_mac.cc', 302 'memory/discardable_memory_mac.cc',
300 'memory/discardable_memory_provider.cc', 303 'memory/discardable_memory_provider.cc',
301 'memory/discardable_memory_provider.h', 304 'memory/discardable_memory_provider.h',
305 'memory/discardable_memory_win.cc',
302 'memory/linked_ptr.h', 306 'memory/linked_ptr.h',
303 'memory/manual_constructor.h', 307 'memory/manual_constructor.h',
304 'memory/memory_pressure_listener.cc', 308 'memory/memory_pressure_listener.cc',
305 'memory/memory_pressure_listener.h', 309 'memory/memory_pressure_listener.h',
306 'memory/raw_scoped_refptr_mismatch_checker.h', 310 'memory/raw_scoped_refptr_mismatch_checker.h',
307 'memory/ref_counted.cc', 311 'memory/ref_counted.cc',
308 'memory/ref_counted.h', 312 'memory/ref_counted.h',
309 'memory/ref_counted_delete_on_message_loop.h', 313 'memory/ref_counted_delete_on_message_loop.h',
310 'memory/ref_counted_memory.cc', 314 'memory/ref_counted_memory.cc',
311 'memory/ref_counted_memory.h', 315 'memory/ref_counted_memory.h',
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 }, 865 },
862 ], 866 ],
863 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { 867 ['OS != "openbsd" or >(nacl_untrusted_build)==1', {
864 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], 868 'sources/': [ ['exclude', '_openbsd\\.cc$'] ],
865 }, 869 },
866 ], 870 ],
867 ['OS != "win" or >(nacl_untrusted_build)==1', { 871 ['OS != "win" or >(nacl_untrusted_build)==1', {
868 'sources/': [ ['exclude', '^win/'] ], 872 'sources/': [ ['exclude', '^win/'] ],
869 }, 873 },
870 ], 874 ],
871 ['<(native_discardable_memory)==1', {
872 'sources!': [
873 'memory/discardable_memory_emulated.cc',
874 'memory/discardable_memory_provider.cc',
875 'memory/discardable_memory_provider.h',
876 ],
877 },
878 ],
879 ['OS != "android" or >(nacl_untrusted_build)==1', { 875 ['OS != "android" or >(nacl_untrusted_build)==1', {
880 'sources/': [ ['exclude', '^android/'] ], 876 'sources/': [ ['exclude', '^android/'] ],
881 }, 877 },
882 ], 878 ],
883 ['OS == "win" and >(nacl_untrusted_build)==0', { 879 ['OS == "win" and >(nacl_untrusted_build)==0', {
884 'include_dirs': [ 880 'include_dirs': [
885 '<(DEPTH)/third_party/wtl/include', 881 '<(DEPTH)/third_party/wtl/include',
886 ], 882 ],
887 'sources!': [ 883 'sources!': [
888 'event_recorder_stubs.cc', 884 'event_recorder_stubs.cc',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
946 ['<(toolkit_uses_gtk) == 1', { 942 ['<(toolkit_uses_gtk) == 1', {
947 'sources!': [ 943 'sources!': [
948 'x11/x11_error_tracker.cc', 944 'x11/x11_error_tracker.cc',
949 ], 945 ],
950 }], 946 }],
951 ], 947 ],
952 }], 948 }],
953 ], 949 ],
954 }, 950 },
955 } 951 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/memory/discardable_memory_emulated.h » ('j') | build/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698