| OLD | NEW |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="linux" or OS=="mac" or OS=="win"', { | 6 ['OS=="linux" or OS=="mac" or OS=="win"', { |
| 7 'variables': { | 7 'variables': { |
| 8 'files': [ | 8 'files': [ |
| 9 '../../testing/test_env.py', | 9 '../../testing/test_env.py', |
| 10 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)', | 10 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)', |
| 11 '<(PRODUCT_DIR)/ui_test.pak', | 11 '<(PRODUCT_DIR)/ui_test.pak', |
| 12 ], | 12 ], |
| 13 }, | 13 }, |
| 14 }], | 14 }], |
| 15 ['OS=="linux"', { | 15 ['OS=="linux"', { |
| 16 'variables': { | 16 'variables': { |
| 17 'command': [ | 17 'command': [ |
| 18 '../../testing/xvfb.py', | 18 '../../testing/xvfb.py', |
| 19 '<(PRODUCT_DIR)', | 19 '<(PRODUCT_DIR)', |
| 20 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)', | 20 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)', |
| 21 '--brave-new-test-launcher', | 21 '--brave-new-test-launcher', |
| 22 '--test-launcher-bot-mode', | 22 '--test-launcher-bot-mode', |
| 23 '--asan=<(asan)', | 23 '--asan=<(asan)', |
| 24 '--lsan=<(lsan)', | 24 '--lsan=<(lsan)', |
| 25 '--msan=<(msan)', |
| 26 '--tsan=<(tsan)', |
| 25 ], | 27 ], |
| 26 'files': [ | 28 'files': [ |
| 27 '../../testing/xvfb.py', | 29 '../../testing/xvfb.py', |
| 28 '<(PRODUCT_DIR)/libosmesa.so', | 30 '<(PRODUCT_DIR)/libosmesa.so', |
| 29 ], | 31 ], |
| 30 }, | 32 }, |
| 31 }], | 33 }], |
| 32 ['OS=="linux" and use_ozone==0', { | 34 ['OS=="linux" and use_ozone==0', { |
| 33 'variables': { | 35 'variables': { |
| 34 'files': [ | 36 'files': [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 52 }], | 54 }], |
| 53 ['OS=="mac" or OS=="win"', { | 55 ['OS=="mac" or OS=="win"', { |
| 54 'variables': { | 56 'variables': { |
| 55 'command': [ | 57 'command': [ |
| 56 '../../testing/test_env.py', | 58 '../../testing/test_env.py', |
| 57 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)', | 59 '<(PRODUCT_DIR)/app_list_unittests<(EXECUTABLE_SUFFIX)', |
| 58 '--brave-new-test-launcher', | 60 '--brave-new-test-launcher', |
| 59 '--test-launcher-bot-mode', | 61 '--test-launcher-bot-mode', |
| 60 '--asan=<(asan)', | 62 '--asan=<(asan)', |
| 61 '--lsan=<(lsan)', | 63 '--lsan=<(lsan)', |
| 64 '--msan=<(msan)', |
| 65 '--tsan=<(tsan)', |
| 62 ], | 66 ], |
| 63 }, | 67 }, |
| 64 }], | 68 }], |
| 65 ], | 69 ], |
| 66 'includes': [ | 70 'includes': [ |
| 67 '../../base/base.isolate', | 71 '../../base/base.isolate', |
| 68 ], | 72 ], |
| 69 } | 73 } |
| OLD | NEW |