| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
| 8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
| 9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 2312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2323 'configurations': { | 2323 'configurations': { |
| 2324 'Release': { | 2324 'Release': { |
| 2325 'ldflags': [ | 2325 'ldflags': [ |
| 2326 '-Wl,--strip-debug', | 2326 '-Wl,--strip-debug', |
| 2327 ], | 2327 ], |
| 2328 }, | 2328 }, |
| 2329 }, | 2329 }, |
| 2330 }], | 2330 }], |
| 2331 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { | 2331 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { |
| 2332 'conditions': [ | 2332 'conditions': [ |
| 2333 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 2333 ['use_allocator!="none"', { |
| 2334 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (
use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', { | |
| 2335 'dependencies': [ | 2334 'dependencies': [ |
| 2336 '../base/allocator/allocator.gyp:allocator', | 2335 '../base/allocator/allocator.gyp:allocator', |
| 2337 ], | 2336 ], |
| 2338 }], | 2337 }], |
| 2339 ], | 2338 ], |
| 2340 }], | 2339 }], |
| 2341 ['OS=="mac"', { | 2340 ['OS=="mac"', { |
| 2342 # The test fetches resources which means Mac need the app bundle to | 2341 # The test fetches resources which means Mac need the app bundle to |
| 2343 # exist on disk so it can pull from it. | 2342 # exist on disk so it can pull from it. |
| 2344 'dependencies': [ | 2343 'dependencies': [ |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2857 'browser/ui/app_list/test/fake_profile_store.h', | 2856 'browser/ui/app_list/test/fake_profile_store.h', |
| 2858 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', | 2857 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', |
| 2859 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', | 2858 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', |
| 2860 'browser/ui/views/app_list/win/app_list_win_unittest.cc', | 2859 'browser/ui/views/app_list/win/app_list_win_unittest.cc', |
| 2861 ], | 2860 ], |
| 2862 }, | 2861 }, |
| 2863 ], | 2862 ], |
| 2864 }], | 2863 }], |
| 2865 ], # 'conditions' | 2864 ], # 'conditions' |
| 2866 } | 2865 } |
| OLD | NEW |