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

Side by Side Diff: webkit/renderer/compositor_bindings/compositor_bindings_tests.gyp

Issue 177353002: Add use_allocator instead of linux_use_tcmalloc to switch the allocator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | Annotate | Revision Log
« no previous file with comments | « url/url.gyp ('k') | no next file » | no next file with comments »
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 'webkit_compositor_bindings_tests_sources': [ 8 'webkit_compositor_bindings_tests_sources': [
9 'web_animation_unittest.cc', 9 'web_animation_unittest.cc',
10 'web_float_animation_curve_unittest.cc', 10 'web_float_animation_curve_unittest.cc',
(...skipping 21 matching lines...) Expand all
32 '<(DEPTH)' 32 '<(DEPTH)'
33 ], 33 ],
34 'conditions': [ 34 'conditions': [
35 ['OS == "android" and gtest_target_type == "shared_library"', { 35 ['OS == "android" and gtest_target_type == "shared_library"', {
36 'dependencies': [ 36 'dependencies': [
37 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 37 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
38 ], 38 ],
39 }], 39 }],
40 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { 40 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', {
41 'conditions': [ 41 'conditions': [
42 [ 'linux_use_tcmalloc==1', { 42 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
43 [ '(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', {
43 'dependencies': [ 44 'dependencies': [
44 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 45 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
45 ], 46 ],
46 }], 47 }],
47 ], 48 ],
48 }], 49 }],
49 ], 50 ],
50 }, 51 },
51 ], 52 ],
52 'conditions': [ 53 'conditions': [
(...skipping 10 matching lines...) Expand all
63 'variables': { 64 'variables': {
64 'test_suite_name': 'webkit_compositor_bindings_unittests', 65 'test_suite_name': 'webkit_compositor_bindings_unittests',
65 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webkit_co mpositor_bindings_unittests<(SHARED_LIB_SUFFIX)', 66 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)webkit_co mpositor_bindings_unittests<(SHARED_LIB_SUFFIX)',
66 }, 67 },
67 'includes': [ '../../../build/apk_test.gypi' ], 68 'includes': [ '../../../build/apk_test.gypi' ],
68 }, 69 },
69 ], 70 ],
70 }], 71 }],
71 ], 72 ],
72 } 73 }
OLDNEW
« no previous file with comments | « url/url.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698