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

Side by Side Diff: Source/heap/blink_heap_tests.gyp

Issue 177053003: Enable use_allocator instead of linux_use_tcmalloc in Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased 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
« no previous file with comments | « no previous file | Source/platform/blink_platform_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 29 matching lines...) Expand all
40 'blink_heap_run_all_tests', 40 'blink_heap_run_all_tests',
41 '../config.gyp:unittest_config', 41 '../config.gyp:unittest_config',
42 '../wtf/wtf.gyp:wtf', 42 '../wtf/wtf.gyp:wtf',
43 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', 43 '../wtf/wtf_tests.gyp:wtf_unittest_helpers',
44 'blink_heap.gyp:blink_heap', 44 'blink_heap.gyp:blink_heap',
45 ], 45 ],
46 'sources': [ 46 'sources': [
47 '<@(heap_test_files)', 47 '<@(heap_test_files)',
48 ], 48 ],
49 'conditions': [ 49 'conditions': [
50 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and linux_us e_tcmalloc==1', { 50 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
51 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and ((use_al locator!="none" and use_allocator!="see_use_tcmalloc") or (use_allocator=="see_u se_tcmalloc" and linux_use_tcmalloc==1))', {
51 'dependencies': [ 52 'dependencies': [
52 '<(DEPTH)/base/base.gyp:base', 53 '<(DEPTH)/base/base.gyp:base',
53 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 54 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
54 ] 55 ]
55 }], 56 }],
56 ['OS=="android" and gtest_target_type == "shared_library"', { 57 ['OS=="android" and gtest_target_type == "shared_library"', {
57 'type': 'shared_library', 58 'type': 'shared_library',
58 'dependencies': [ 59 'dependencies': [
59 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 60 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
60 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', 61 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2',
(...skipping 28 matching lines...) Expand all
89 'blink_heap_unittests', 90 'blink_heap_unittests',
90 ], 91 ],
91 'variables': { 92 'variables': {
92 'test_suite_name': 'blink_heap_unittests', 93 'test_suite_name': 'blink_heap_unittests',
93 }, 94 },
94 'includes': [ '../../../../build/apk_test.gypi' ], 95 'includes': [ '../../../../build/apk_test.gypi' ],
95 }], 96 }],
96 }], 97 }],
97 ], 98 ],
98 } 99 }
OLDNEW
« no previous file with comments | « no previous file | Source/platform/blink_platform_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698