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

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: rebase and address review feedback 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_provider_unittest.cc » ('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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 'mac/bind_objc_block_unittest.mm', 523 'mac/bind_objc_block_unittest.mm',
524 'mac/foundation_util_unittest.mm', 524 'mac/foundation_util_unittest.mm',
525 'mac/libdispatch_task_runner_unittest.cc', 525 'mac/libdispatch_task_runner_unittest.cc',
526 'mac/mac_util_unittest.mm', 526 'mac/mac_util_unittest.mm',
527 'mac/objc_property_releaser_unittest.mm', 527 'mac/objc_property_releaser_unittest.mm',
528 'mac/scoped_nsobject_unittest.mm', 528 'mac/scoped_nsobject_unittest.mm',
529 'mac/scoped_sending_event_unittest.mm', 529 'mac/scoped_sending_event_unittest.mm',
530 'md5_unittest.cc', 530 'md5_unittest.cc',
531 'memory/aligned_memory_unittest.cc', 531 'memory/aligned_memory_unittest.cc',
532 'memory/discardable_memory_unittest.cc', 532 'memory/discardable_memory_unittest.cc',
533 'memory/discardable_memory_provider_unittest.cc',
533 'memory/linked_ptr_unittest.cc', 534 'memory/linked_ptr_unittest.cc',
534 'memory/ref_counted_memory_unittest.cc', 535 'memory/ref_counted_memory_unittest.cc',
535 'memory/ref_counted_unittest.cc', 536 'memory/ref_counted_unittest.cc',
536 'memory/scoped_ptr_unittest.cc', 537 'memory/scoped_ptr_unittest.cc',
537 'memory/scoped_ptr_unittest.nc', 538 'memory/scoped_ptr_unittest.nc',
538 'memory/scoped_vector_unittest.cc', 539 'memory/scoped_vector_unittest.cc',
539 'memory/shared_memory_unittest.cc', 540 'memory/shared_memory_unittest.cc',
540 'memory/singleton_unittest.cc', 541 'memory/singleton_unittest.cc',
541 'memory/weak_ptr_unittest.cc', 542 'memory/weak_ptr_unittest.cc',
542 'memory/weak_ptr_unittest.nc', 543 'memory/weak_ptr_unittest.nc',
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 ['use_aura==1 and use_x11==1', { 823 ['use_aura==1 and use_x11==1', {
823 'sources': [ 824 'sources': [
824 'x11/edid_parser_x11_unittest.cc', 825 'x11/edid_parser_x11_unittest.cc',
825 ], 826 ],
826 }], 827 }],
827 ['use_system_nspr==1', { 828 ['use_system_nspr==1', {
828 'dependencies': [ 829 'dependencies': [
829 'third_party/nspr/nspr.gyp:nspr', 830 'third_party/nspr/nspr.gyp:nspr',
830 ], 831 ],
831 }], 832 }],
833 ['<(native_discardable_memory)==1', {
834 'sources!': [
835 'memory/discardable_memory_provider_unittest.cc',
836 ],
837 }],
832 ], # conditions 838 ], # conditions
833 'target_conditions': [ 839 'target_conditions': [
834 ['OS == "ios" and _toolset != "host"', { 840 ['OS == "ios" and _toolset != "host"', {
835 'sources/': [ 841 'sources/': [
836 # Pull in specific Mac files for iOS (which have been filtered out 842 # Pull in specific Mac files for iOS (which have been filtered out
837 # by file name rules). 843 # by file name rules).
838 ['include', '^mac/objc_property_releaser_unittest\\.mm$'], 844 ['include', '^mac/objc_property_releaser_unittest\\.mm$'],
839 ['include', '^mac/bind_objc_block_unittest\\.mm$'], 845 ['include', '^mac/bind_objc_block_unittest\\.mm$'],
840 ['include', '^mac/scoped_nsobject_unittest\\.mm$'], 846 ['include', '^mac/scoped_nsobject_unittest\\.mm$'],
841 ['include', '^sys_string_conversions_mac_unittest\\.mm$'], 847 ['include', '^sys_string_conversions_mac_unittest\\.mm$'],
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
1348 'base_unittests.isolate', 1354 'base_unittests.isolate',
1349 ], 1355 ],
1350 'sources': [ 1356 'sources': [
1351 'base_unittests.isolate', 1357 'base_unittests.isolate',
1352 ], 1358 ],
1353 }, 1359 },
1354 ], 1360 ],
1355 }], 1361 }],
1356 ], 1362 ],
1357 } 1363 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | base/memory/discardable_memory_provider_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698