Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'variables': { | 5 'variables': { |
| 6 'command': [ | 6 'command': [ |
| 7 '../testing/test_env.py', | 7 '../testing/test_env.py', |
| 8 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', | 8 '<(PRODUCT_DIR)/device_unittests<(EXECUTABLE_SUFFIX)', |
| 9 '--brave-new-test-launcher', | 9 '--brave-new-test-launcher', |
| 10 '--test-launcher-bot-mode', | 10 '--test-launcher-bot-mode', |
| 11 '--asan=<(asan)', | 11 '--asan=<(asan)', |
| 12 '--msan=<(msan)', | 12 '--msan=<(msan)', |
| 13 '--tsan=<(tsan)', | 13 '--tsan=<(tsan)', |
| 14 ], | 14 ], |
| 15 }, | 15 }, |
| 16 'conditions': [ | 16 'conditions': [ |
| 17 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { | |
| 18 'variables': { | |
| 19 'files': [ | |
| 20 'test/data/', | |
| 21 ], | |
| 22 }, | |
| 23 }], | |
| 24 ['OS=="linux" or OS=="mac" or OS=="win"', { | 17 ['OS=="linux" or OS=="mac" or OS=="win"', { |
| 25 'variables': { | 18 'variables': { |
| 26 'files': [ | 19 'files': [ |
| 27 '../testing/test_env.py', | 20 '../testing/test_env.py', |
| 28 '<(PRODUCT_DIR)/base_unittests<(EXECUTABLE_SUFFIX)', | 21 '<(PRODUCT_DIR)/device_unittests<(EXECUTABLE_SUFFIX)', |
| 22 '<(PRODUCT_DIR)/usb_gadget.zip', | |
| 23 '<(PRODUCT_DIR)/usb_gadget.zip.md5', | |
| 29 ], | 24 ], |
| 30 'read_only': 1, | 25 'read_only': 1, |
|
M-A Ruel
2015/06/30 19:54:20
Remove, it's not needed anymore. I'll remove it fr
Reilly Grant (use Gerrit)
2015/06/30 20:38:11
Done.
| |
| 31 }, | 26 }, |
| 32 }], | 27 }], |
| 33 ['OS=="linux"', { | 28 ['OS=="linux"', { |
|
M-A Ruel
2015/06/30 19:54:20
The following is not necessary, trim lines 28-48.
Reilly Grant (use Gerrit)
2015/06/30 20:38:10
Done.
| |
| 34 'variables': { | 29 'variables': { |
| 35 'files': [ | 30 'files': [ |
| 36 '<(PRODUCT_DIR)/lib/libmalloc_wrapper.so', | 31 '<(PRODUCT_DIR)/lib/libmalloc_wrapper.so', |
| 37 ], | 32 ], |
| 38 }, | 33 }, |
| 39 }], | 34 }], |
| 40 ['OS=="mac" and asan==1 and fastbuild==0', { | 35 ['OS=="mac" and asan==1 and fastbuild==0', { |
| 41 'variables': { | 36 'variables': { |
| 42 'files': [ | 37 'files': [ |
| 43 '<(PRODUCT_DIR)/base_unittests.dSYM/', | 38 '<(PRODUCT_DIR)/device_unittests.dSYM/', |
| 44 ], | 39 ], |
| 45 }, | 40 }, |
| 46 }], | 41 }], |
| 47 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 42 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
| 48 'variables': { | 43 'variables': { |
| 49 'files': [ | 44 'files': [ |
| 50 '<(PRODUCT_DIR)/base_unittests.exe.pdb', | 45 '<(PRODUCT_DIR)/device_unittests.exe.pdb', |
| 51 ], | 46 ], |
| 52 }, | 47 }, |
| 53 }], | 48 }], |
| 54 ], | 49 ], |
| 55 'includes': [ | 50 'includes': [ |
| 56 'base.isolate', | 51 '../base/base.isolate', |
| 57 ], | 52 ], |
| 58 } | 53 } |
| OLD | NEW |