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

Side by Side Diff: base/base.gypi

Issue 17106004: Add discardable memory emulation for non-android/mac platforms (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 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 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 'mac/scoped_nsexception_enabler.mm', 269 'mac/scoped_nsexception_enabler.mm',
270 'mac/scoped_nsobject.h', 270 'mac/scoped_nsobject.h',
271 'mac/scoped_sending_event.h', 271 'mac/scoped_sending_event.h',
272 'mac/scoped_sending_event.mm', 272 'mac/scoped_sending_event.mm',
273 'mac/sdk_forward_declarations.h', 273 'mac/sdk_forward_declarations.h',
274 'memory/aligned_memory.cc', 274 'memory/aligned_memory.cc',
275 'memory/aligned_memory.h', 275 'memory/aligned_memory.h',
276 'memory/discardable_memory.cc', 276 'memory/discardable_memory.cc',
277 'memory/discardable_memory.h', 277 'memory/discardable_memory.h',
278 'memory/discardable_memory_android.cc', 278 'memory/discardable_memory_android.cc',
279 'memory/discardable_memory_emulated.cc',
279 'memory/discardable_memory_mac.cc', 280 'memory/discardable_memory_mac.cc',
281 'memory/discardable_memory_provider.cc',
282 'memory/discardable_memory_provider.h',
280 'memory/linked_ptr.h', 283 'memory/linked_ptr.h',
281 'memory/manual_constructor.h', 284 'memory/manual_constructor.h',
282 'memory/memory_pressure_listener.cc', 285 'memory/memory_pressure_listener.cc',
283 'memory/memory_pressure_listener.h', 286 'memory/memory_pressure_listener.h',
284 'memory/raw_scoped_refptr_mismatch_checker.h', 287 'memory/raw_scoped_refptr_mismatch_checker.h',
285 'memory/ref_counted.cc', 288 'memory/ref_counted.cc',
286 'memory/ref_counted.h', 289 'memory/ref_counted.h',
287 'memory/ref_counted_delete_on_message_loop.h', 290 'memory/ref_counted_delete_on_message_loop.h',
288 'memory/ref_counted_memory.cc', 291 'memory/ref_counted_memory.cc',
289 'memory/ref_counted_memory.h', 292 'memory/ref_counted_memory.h',
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 }, 785 },
783 ], 786 ],
784 ['OS != "openbsd" or >(nacl_untrusted_build)==1', { 787 ['OS != "openbsd" or >(nacl_untrusted_build)==1', {
785 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], 788 'sources/': [ ['exclude', '_openbsd\\.cc$'] ],
786 }, 789 },
787 ], 790 ],
788 ['OS != "win" or >(nacl_untrusted_build)==1', { 791 ['OS != "win" or >(nacl_untrusted_build)==1', {
789 'sources/': [ ['exclude', '^win/'] ], 792 'sources/': [ ['exclude', '^win/'] ],
790 }, 793 },
791 ], 794 ],
795 ['OS == "android" or OS == "mac"', {
796 'sources!': [
797 'memory/discardable_memory_emulated.cc',
798 'memory/discardable_memory_provider.cc',
799 'memory/discardable_memory_provider.h',
800 ],
801 },
802 ],
792 ['OS != "android" or >(nacl_untrusted_build)==1', { 803 ['OS != "android" or >(nacl_untrusted_build)==1', {
793 'sources/': [ ['exclude', '^android/'] ], 804 'sources/': [ ['exclude', '^android/'] ],
794 }, 805 },
795 ], 806 ],
796 ['OS == "win" and >(nacl_untrusted_build)==0', { 807 ['OS == "win" and >(nacl_untrusted_build)==0', {
797 'include_dirs': [ 808 'include_dirs': [
798 '<(DEPTH)/third_party/wtl/include', 809 '<(DEPTH)/third_party/wtl/include',
799 ], 810 ],
800 'sources!': [ 811 'sources!': [
801 'event_recorder_stubs.cc', 812 'event_recorder_stubs.cc',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { 863 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', {
853 'sources/': [ 864 'sources/': [
854 ['exclude', '^third_party/nspr/'], 865 ['exclude', '^third_party/nspr/'],
855 ], 866 ],
856 }], 867 }],
857 ], 868 ],
858 }], 869 }],
859 ], 870 ],
860 }, 871 },
861 } 872 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | base/containers/mru_cache.h » ('j') | base/memory/discardable_memory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698