OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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"', { | 6 ['OS=="linux"', { |
7 'variables': { | 7 'variables': { |
8 'command': [ | 8 'command': [ |
9 '../testing/xvfb.py', | 9 '../testing/xvfb.py', |
10 '<(PRODUCT_DIR)', | 10 '<(PRODUCT_DIR)', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 'variables': { | 61 'variables': { |
62 'files': [ | 62 'files': [ |
63 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', | 63 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', |
64 '<(PRODUCT_DIR)/<(mac_product_name).app/', | 64 '<(PRODUCT_DIR)/<(mac_product_name).app/', |
65 '<(PRODUCT_DIR)/ffmpegsumo.so', | 65 '<(PRODUCT_DIR)/ffmpegsumo.so', |
66 '<(PRODUCT_DIR)/osmesa.so', | 66 '<(PRODUCT_DIR)/osmesa.so', |
67 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests', | 67 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests', |
68 ], | 68 ], |
69 }, | 69 }, |
70 }], | 70 }], |
| 71 ['OS=="mac" and asan==1', { |
| 72 'variables': { |
| 73 'files': [ |
| 74 '<(PRODUCT_DIR)/interactive_ui_tests.dSYM/', |
| 75 ], |
| 76 }, |
| 77 }], |
71 ['OS=="mac" or OS=="win"', { | 78 ['OS=="mac" or OS=="win"', { |
72 'variables': { | 79 'variables': { |
73 'command': [ | 80 'command': [ |
74 '../testing/test_env.py', | 81 '../testing/test_env.py', |
75 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', | 82 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', |
76 '--test-launcher-bot-mode', | 83 '--test-launcher-bot-mode', |
77 '--asan=<(asan)', | 84 '--asan=<(asan)', |
78 '--lsan=<(lsan)', | 85 '--lsan=<(lsan)', |
79 ], | 86 ], |
80 }, | 87 }, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 '<(PRODUCT_DIR)/resources/chromeos/', | 125 '<(PRODUCT_DIR)/resources/chromeos/', |
119 ], | 126 ], |
120 }, | 127 }, |
121 }], | 128 }], |
122 ], | 129 ], |
123 'includes': [ | 130 'includes': [ |
124 '../base/base.isolate', | 131 '../base/base.isolate', |
125 '../gin/v8.isolate', | 132 '../gin/v8.isolate', |
126 ], | 133 ], |
127 } | 134 } |
OLD | NEW |