| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 'blink_heap_run_all_tests', | 40 'blink_heap_run_all_tests', |
| 41 '../config.gyp:unittest_config', | 41 '../config.gyp:unittest_config', |
| 42 '../wtf/wtf.gyp:wtf', | 42 '../wtf/wtf.gyp:wtf', |
| 43 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', | 43 '../wtf/wtf_tests.gyp:wtf_unittest_helpers', |
| 44 'blink_heap.gyp:blink_heap', | 44 'blink_heap.gyp:blink_heap', |
| 45 ], | 45 ], |
| 46 'sources': [ | 46 'sources': [ |
| 47 '<@(heap_test_files)', | 47 '<@(heap_test_files)', |
| 48 ], | 48 ], |
| 49 'conditions': [ | 49 'conditions': [ |
| 50 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and linux_us
e_tcmalloc==1', { | 50 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 |
| 51 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and ((use_al
locator!="none" and use_allocator!="see_use_tcmalloc") or (use_allocator=="see_u
se_tcmalloc" and linux_use_tcmalloc==1))', { |
| 51 'dependencies': [ | 52 'dependencies': [ |
| 52 '<(DEPTH)/base/base.gyp:base', | 53 '<(DEPTH)/base/base.gyp:base', |
| 53 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 54 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 54 ] | 55 ] |
| 55 }], | 56 }], |
| 56 ['OS=="android" and gtest_target_type == "shared_library"', { | 57 ['OS=="android" and gtest_target_type == "shared_library"', { |
| 57 'type': 'shared_library', | 58 'type': 'shared_library', |
| 58 'dependencies': [ | 59 'dependencies': [ |
| 59 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 60 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
| 60 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', | 61 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 89 'blink_heap_unittests', | 90 'blink_heap_unittests', |
| 90 ], | 91 ], |
| 91 'variables': { | 92 'variables': { |
| 92 'test_suite_name': 'blink_heap_unittests', | 93 'test_suite_name': 'blink_heap_unittests', |
| 93 }, | 94 }, |
| 94 'includes': [ '../../../../build/apk_test.gypi' ], | 95 'includes': [ '../../../../build/apk_test.gypi' ], |
| 95 }], | 96 }], |
| 96 }], | 97 }], |
| 97 ], | 98 ], |
| 98 } | 99 } |
| OLD | NEW |