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

Side by Side Diff: gpu/gpu.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 | « gpu/gles2_conform_support/gles2_conform_support.gyp ('k') | ipc/ipc.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 # 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 'nacl_win64_target': 0, 7 'nacl_win64_target': 0,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'gpu_common.gypi', 10 'gpu_common.gypi',
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 'config/gpu_test_expectations_parser_unittest.cc', 257 'config/gpu_test_expectations_parser_unittest.cc',
258 'config/gpu_util_unittest.cc', 258 'config/gpu_util_unittest.cc',
259 ], 259 ],
260 'conditions': [ 260 'conditions': [
261 ['OS == "android" and gtest_target_type == "shared_library"', { 261 ['OS == "android" and gtest_target_type == "shared_library"', {
262 'dependencies': [ 262 'dependencies': [
263 '../testing/android/native_test.gyp:native_test_native_code', 263 '../testing/android/native_test.gyp:native_test_native_code',
264 ], 264 ],
265 }], 265 }],
266 # See http://crbug.com/162998#c4 for why this is needed. 266 # See http://crbug.com/162998#c4 for why this is needed.
267 ['OS=="linux" and linux_use_tcmalloc==1', { 267 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
268 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', {
268 'dependencies': [ 269 'dependencies': [
269 '../base/allocator/allocator.gyp:allocator', 270 '../base/allocator/allocator.gyp:allocator',
270 ], 271 ],
271 }], 272 }],
272 ], 273 ],
273 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 274 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
274 'msvs_disabled_warnings': [ 4267, ], 275 'msvs_disabled_warnings': [ 4267, ],
275 }, 276 },
276 { 277 {
277 'target_name': 'gl_tests', 278 'target_name': 'gl_tests',
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests< (SHARED_LIB_SUFFIX)', 581 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests< (SHARED_LIB_SUFFIX)',
581 }, 582 },
582 'includes': [ 583 'includes': [
583 '../build/apk_test.gypi', 584 '../build/apk_test.gypi',
584 ], 585 ],
585 }, 586 },
586 ], 587 ],
587 }], 588 }],
588 ], 589 ],
589 } 590 }
OLDNEW
« no previous file with comments | « gpu/gles2_conform_support/gles2_conform_support.gyp ('k') | ipc/ipc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698