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

Side by Side Diff: chrome/chrome_android.gypi

Issue 16256013: Adds TCMalloc support for Chromium Test Shell on Android. (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 | 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 'package_name': 'chromium_testshell', 7 'package_name': 'chromium_testshell',
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'chrome_android_paks.gypi', # Included for the list of pak resources. 10 'chrome_android_paks.gypi', # Included for the list of pak resources.
(...skipping 26 matching lines...) Expand all
37 '../skia/config', 37 '../skia/config',
38 ], 38 ],
39 'conditions': [ 39 'conditions': [
40 [ 'order_profiling!=0', { 40 [ 'order_profiling!=0', {
41 'conditions': [ 41 'conditions': [
42 [ 'OS=="android"', { 42 [ 'OS=="android"', {
43 'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ], 43 'dependencies': [ '../tools/cygprofile/cygprofile.gyp:cygprofile', ],
44 }], 44 }],
45 ], 45 ],
46 }], 46 }],
47 [ 'android_use_tcmalloc==1', {
48 'dependencies': [
49 '../base/allocator/allocator.gyp:allocator', ],
50 }],
47 ], 51 ],
48 }, 52 },
49 { 53 {
50 'target_name': 'chromium_testshell', 54 'target_name': 'chromium_testshell',
51 'type': 'none', 55 'type': 'none',
52 'dependencies': [ 56 'dependencies': [
53 '../media/media.gyp:media_java', 57 '../media/media.gyp:media_java',
54 'chrome.gyp:chrome_java', 58 'chrome.gyp:chrome_java',
55 'chromium_testshell_paks', 59 'chromium_testshell_paks',
56 'libchromiumtestshell', 60 'libchromiumtestshell',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'destination': '<(chrome_android_pak_output_folder)', 155 'destination': '<(chrome_android_pak_output_folder)',
152 'files': [ 156 'files': [
153 '<@(chrome_android_pak_input_resources)', 157 '<@(chrome_android_pak_input_resources)',
154 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', 158 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak',
155 ], 159 ],
156 } 160 }
157 ], 161 ],
158 }, 162 },
159 ], 163 ],
160 } 164 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698