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

Side by Side Diff: base/base.gyp

Issue 16514009: Add dlmalloc from Bionic to the Chromium tree (DO NOT REVIEW). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | build/common.gypi » ('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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 ['target_arch == "ia32"', { 132 ['target_arch == "ia32"', {
133 'sources/': [ 133 'sources/': [
134 ['include', '^atomicops_internals_x86_gcc\\.cc$'], 134 ['include', '^atomicops_internals_x86_gcc\\.cc$'],
135 ], 135 ],
136 }], 136 }],
137 ['target_arch == "mipsel"', { 137 ['target_arch == "mipsel"', {
138 'sources/': [ 138 'sources/': [
139 ['include', '^atomicops_internals_mips_gcc\\.cc$'], 139 ['include', '^atomicops_internals_mips_gcc\\.cc$'],
140 ], 140 ],
141 }], 141 }],
142 ['android_use_debug_dlmalloc == 1', {
143 'dependencies': [
144 '../third_party/android_debug_dlmalloc/dlmalloc.gyp:dlmalloc',
145 ],
146 }],
142 ], 147 ],
143 'dependencies': [ 148 'dependencies': [
144 'base_jni_headers', 149 'base_jni_headers',
145 'symbolize', 150 'symbolize',
146 '../third_party/ashmem/ashmem.gyp:ashmem', 151 '../third_party/ashmem/ashmem.gyp:ashmem',
147 ], 152 ],
148 'include_dirs': [ 153 'include_dirs': [
149 '<(SHARED_INTERMEDIATE_DIR)/base', 154 '<(SHARED_INTERMEDIATE_DIR)/base',
150 ], 155 ],
151 'link_settings': { 156 'link_settings': {
(...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 'base_unittests.isolate', 1294 'base_unittests.isolate',
1290 ], 1295 ],
1291 'sources': [ 1296 'sources': [
1292 'base_unittests.isolate', 1297 'base_unittests.isolate',
1293 ], 1298 ],
1294 }, 1299 },
1295 ], 1300 ],
1296 }], 1301 }],
1297 ], 1302 ],
1298 } 1303 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698