OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |