| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 { | |
| 5 'variables': { | |
| 6 'files': [ | |
| 7 # Required by some font tests. | |
| 8 'testing/data/', | |
| 9 # Required by some image decoder tests. | |
| 10 'image-decoders/testing/', | |
| 11 '../../LayoutTests/fast/images/resources/', | |
| 12 ], | |
| 13 }, | |
| 14 'conditions': [ | |
| 15 ['OS=="linux" or OS=="mac" or OS=="win"', { | |
| 16 'variables': { | |
| 17 'command': [ | |
| 18 '<(DEPTH)/testing/test_env.py', | |
| 19 '<(PRODUCT_DIR)/blink_platform_unittests<(EXECUTABLE_SUFFIX)', | |
| 20 '--brave-new-test-launcher', | |
| 21 '--test-launcher-bot-mode', | |
| 22 '--asan=<(asan)', | |
| 23 '--msan=<(msan)', | |
| 24 '--tsan=<(tsan)', | |
| 25 ], | |
| 26 'files': [ | |
| 27 '<(DEPTH)/testing/test_env.py', | |
| 28 '<(PRODUCT_DIR)/blink_platform_unittests<(EXECUTABLE_SUFFIX)', | |
| 29 ], | |
| 30 }, | |
| 31 }], | |
| 32 ], | |
| 33 'includes': [ | |
| 34 '../../../../base/base.isolate', | |
| 35 # Required on Android to copy icudtl.dat to a device. | |
| 36 '../../../icu/icu.isolate', | |
| 37 ], | |
| 38 } | |
| OLD | NEW |