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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'crypto.gypi', | 10 'crypto.gypi', |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 'crypto', | 173 'crypto', |
174 '../base/base.gyp:base', | 174 '../base/base.gyp:base', |
175 '../base/base.gyp:run_all_unittests', | 175 '../base/base.gyp:run_all_unittests', |
176 '../base/base.gyp:test_support_base', | 176 '../base/base.gyp:test_support_base', |
177 '../testing/gmock.gyp:gmock', | 177 '../testing/gmock.gyp:gmock', |
178 '../testing/gtest.gyp:gtest', | 178 '../testing/gtest.gyp:gtest', |
179 ], | 179 ], |
180 'conditions': [ | 180 'conditions': [ |
181 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 181 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
182 'conditions': [ | 182 'conditions': [ |
183 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 183 [ 'use_allocator!="none"', { |
184 [ '(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or
(use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', { | |
185 'dependencies': [ | 184 'dependencies': [ |
186 '../base/allocator/allocator.gyp:allocator', | 185 '../base/allocator/allocator.gyp:allocator', |
187 ], | 186 ], |
188 }, | 187 }, |
189 ], | 188 ], |
190 ], | 189 ], |
191 'dependencies': [ | 190 'dependencies': [ |
192 '../build/linux/system.gyp:ssl', | 191 '../build/linux/system.gyp:ssl', |
193 ], | 192 ], |
194 }, { # os_posix != 1 or OS == "mac" or OS == "android" or OS == "ios" | 193 }, { # os_posix != 1 or OS == "mac" or OS == "android" or OS == "ios" |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 'configurations': { | 239 'configurations': { |
241 'Common_Base': { | 240 'Common_Base': { |
242 'msvs_target_platform': 'x64', | 241 'msvs_target_platform': 'x64', |
243 }, | 242 }, |
244 }, | 243 }, |
245 }, | 244 }, |
246 ], | 245 ], |
247 }], | 246 }], |
248 ], | 247 ], |
249 } | 248 } |
OLD | NEW |