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

Side by Side Diff: base/base.gyp

Issue 17106004: Add discardable memory emulation for non-android/mac platforms (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing review. Created 7 years, 2 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') | base/memory/discardable_memory.h » ('J')
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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 'mac/bind_objc_block_unittest.mm', 514 'mac/bind_objc_block_unittest.mm',
515 'mac/foundation_util_unittest.mm', 515 'mac/foundation_util_unittest.mm',
516 'mac/libdispatch_task_runner_unittest.cc', 516 'mac/libdispatch_task_runner_unittest.cc',
517 'mac/mac_util_unittest.mm', 517 'mac/mac_util_unittest.mm',
518 'mac/objc_property_releaser_unittest.mm', 518 'mac/objc_property_releaser_unittest.mm',
519 'mac/scoped_nsobject_unittest.mm', 519 'mac/scoped_nsobject_unittest.mm',
520 'mac/scoped_sending_event_unittest.mm', 520 'mac/scoped_sending_event_unittest.mm',
521 'md5_unittest.cc', 521 'md5_unittest.cc',
522 'memory/aligned_memory_unittest.cc', 522 'memory/aligned_memory_unittest.cc',
523 'memory/discardable_memory_unittest.cc', 523 'memory/discardable_memory_unittest.cc',
524 'memory/discardable_memory_provider_unittest.cc',
524 'memory/linked_ptr_unittest.cc', 525 'memory/linked_ptr_unittest.cc',
525 'memory/ref_counted_memory_unittest.cc', 526 'memory/ref_counted_memory_unittest.cc',
526 'memory/ref_counted_unittest.cc', 527 'memory/ref_counted_unittest.cc',
527 'memory/scoped_ptr_unittest.cc', 528 'memory/scoped_ptr_unittest.cc',
528 'memory/scoped_ptr_unittest.nc', 529 'memory/scoped_ptr_unittest.nc',
529 'memory/scoped_vector_unittest.cc', 530 'memory/scoped_vector_unittest.cc',
530 'memory/shared_memory_unittest.cc', 531 'memory/shared_memory_unittest.cc',
531 'memory/singleton_unittest.cc', 532 'memory/singleton_unittest.cc',
532 'memory/weak_ptr_unittest.cc', 533 'memory/weak_ptr_unittest.cc',
533 'memory/weak_ptr_unittest.nc', 534 'memory/weak_ptr_unittest.nc',
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 'debug/trace_event_win_unittest.cc', 808 'debug/trace_event_win_unittest.cc',
808 'time/time_win_unittest.cc', 809 'time/time_win_unittest.cc',
809 'win/win_util_unittest.cc', 810 'win/win_util_unittest.cc',
810 ], 811 ],
811 }], 812 }],
812 ['use_system_nspr==1', { 813 ['use_system_nspr==1', {
813 'dependencies': [ 814 'dependencies': [
814 'third_party/nspr/nspr.gyp:nspr', 815 'third_party/nspr/nspr.gyp:nspr',
815 ], 816 ],
816 }], 817 }],
818 ['<(native_discardable_memory)==1', {
819 'sources!': [
820 'memory/discardable_memory_provider_unittest.cc',
821 ],
822 }],
817 ], # conditions 823 ], # conditions
818 'target_conditions': [ 824 'target_conditions': [
819 ['OS == "ios" and _toolset != "host"', { 825 ['OS == "ios" and _toolset != "host"', {
820 'sources/': [ 826 'sources/': [
821 # Pull in specific Mac files for iOS (which have been filtered out 827 # Pull in specific Mac files for iOS (which have been filtered out
822 # by file name rules). 828 # by file name rules).
823 ['include', '^mac/objc_property_releaser_unittest\\.mm$'], 829 ['include', '^mac/objc_property_releaser_unittest\\.mm$'],
824 ['include', '^mac/bind_objc_block_unittest\\.mm$'], 830 ['include', '^mac/bind_objc_block_unittest\\.mm$'],
825 ['include', '^mac/scoped_nsobject_unittest\\.mm$'], 831 ['include', '^mac/scoped_nsobject_unittest\\.mm$'],
826 ['include', '^sys_string_conversions_mac_unittest\\.mm$'], 832 ['include', '^sys_string_conversions_mac_unittest\\.mm$'],
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 'base_unittests.isolate', 1337 'base_unittests.isolate',
1332 ], 1338 ],
1333 'sources': [ 1339 'sources': [
1334 'base_unittests.isolate', 1340 'base_unittests.isolate',
1335 ], 1341 ],
1336 }, 1342 },
1337 ], 1343 ],
1338 }], 1344 }],
1339 ], 1345 ],
1340 } 1346 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | base/memory/discardable_memory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698