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

Side by Side Diff: base/base.gyp

Issue 55333002: Make possible to check memory allocations inside chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased patch - upload to try Created 6 years, 11 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
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 17 matching lines...) Expand all
28 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions', 28 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotat ions',
29 ], 29 ],
30 # TODO(gregoryd): direct_dependent_settings should be shared with the 30 # TODO(gregoryd): direct_dependent_settings should be shared with the
31 # 64-bit target, but it doesn't work due to a bug in gyp 31 # 64-bit target, but it doesn't work due to a bug in gyp
32 'direct_dependent_settings': { 32 'direct_dependent_settings': {
33 'include_dirs': [ 33 'include_dirs': [
34 '..', 34 '..',
35 ], 35 ],
36 }, 36 },
37 'conditions': [ 37 'conditions': [
38 ['(OS=="linux" and linux_use_tcmalloc==1) or \
39 (OS=="android" and android_use_tcmalloc==1) or \
40 (OS=="win" and win_use_allocator_shim==1)', {
41 'dependencies': [
42 'allocator/allocator.gyp:allocator',
43 ],
44 }],
38 ['desktop_linux == 1 or chromeos == 1', { 45 ['desktop_linux == 1 or chromeos == 1', {
39 'conditions': [ 46 'conditions': [
40 ['chromeos==1', { 47 ['chromeos==1', {
41 'sources/': [ ['include', '_chromeos\\.cc$'] ] 48 'sources/': [ ['include', '_chromeos\\.cc$'] ]
42 }], 49 }],
43 ['toolkit_uses_gtk==1', { 50 ['toolkit_uses_gtk==1', {
44 'dependencies': [ 51 'dependencies': [
45 '../build/linux/system.gyp:gtk', 52 '../build/linux/system.gyp:gtk',
46 ], 53 ],
47 'export_dependent_settings': [ 54 'export_dependent_settings': [
(...skipping 1309 matching lines...) Expand 10 before | Expand all | Expand 10 after
1357 'base_unittests.isolate', 1364 'base_unittests.isolate',
1358 ], 1365 ],
1359 'sources': [ 1366 'sources': [
1360 'base_unittests.isolate', 1367 'base_unittests.isolate',
1361 ], 1368 ],
1362 }, 1369 },
1363 ], 1370 ],
1364 }], 1371 }],
1365 ], 1372 ],
1366 } 1373 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698