| 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)/ui_touch_selection_unittests<(EXECUTABLE_SUFFIX)', | 10 '<(PRODUCT_DIR)/ui_touch_selection_unittests<(EXECUTABLE_SUFFIX)', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 ], | 28 ], |
| 29 }, | 29 }, |
| 30 }], | 30 }], |
| 31 ['OS=="linux" and use_ozone==0', { | 31 ['OS=="linux" and use_ozone==0', { |
| 32 'variables': { | 32 'variables': { |
| 33 'files': [ | 33 'files': [ |
| 34 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | 34 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 }], | 37 }], |
| 38 ['OS=="mac"', { | |
| 39 'variables': { | |
| 40 'files': [ | |
| 41 '<(PRODUCT_DIR)/osmesa.so', | |
| 42 ], | |
| 43 }, | |
| 44 }], | |
| 45 ['OS=="win"', { | |
| 46 'variables': { | |
| 47 'files': [ | |
| 48 '<(PRODUCT_DIR)/osmesa.dll', | |
| 49 ], | |
| 50 }, | |
| 51 }], | |
| 52 ['OS=="mac" or OS=="win"', { | 38 ['OS=="mac" or OS=="win"', { |
| 53 'variables': { | 39 'variables': { |
| 54 'command': [ | 40 'command': [ |
| 55 '../../testing/test_env.py', | 41 '../../testing/test_env.py', |
| 56 '<(PRODUCT_DIR)/ui_touch_selection_unittests<(EXECUTABLE_SUFFIX)', | 42 '<(PRODUCT_DIR)/ui_touch_selection_unittests<(EXECUTABLE_SUFFIX)', |
| 57 '--brave-new-test-launcher', | 43 '--brave-new-test-launcher', |
| 58 '--test-launcher-bot-mode', | 44 '--test-launcher-bot-mode', |
| 59 '--asan=<(asan)', | 45 '--asan=<(asan)', |
| 60 '--lsan=<(lsan)', | 46 '--lsan=<(lsan)', |
| 61 ], | 47 ], |
| 62 }, | 48 }, |
| 63 }], | 49 }], |
| 64 ], | 50 ], |
| 65 'includes': [ | 51 'includes': [ |
| 66 '../../base/base.isolate', | 52 '../../base/base.isolate', |
| 67 ], | 53 ], |
| 68 } | 54 } |
| OLD | NEW |