Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Side by Side Diff: chrome/interactive_ui_tests.isolate

Issue 859293002: Fix report symbolization on swarming bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'variables': { 63 'variables': {
64 'files': [ 64 'files': [
65 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 65 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
66 '<(PRODUCT_DIR)/<(mac_product_name).app/', 66 '<(PRODUCT_DIR)/<(mac_product_name).app/',
67 '<(PRODUCT_DIR)/ffmpegsumo.so', 67 '<(PRODUCT_DIR)/ffmpegsumo.so',
68 '<(PRODUCT_DIR)/osmesa.so', 68 '<(PRODUCT_DIR)/osmesa.so',
69 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests', 69 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests',
70 ], 70 ],
71 }, 71 },
72 }], 72 }],
73 ['OS=="mac" and asan==1', {
74 'variables': {
75 'files': [
76 '<(PRODUCT_DIR)/interactive_ui_tests.dSYM/',
77 ],
78 },
79 }],
73 ['OS=="mac" or OS=="win"', { 80 ['OS=="mac" or OS=="win"', {
74 'variables': { 81 'variables': {
75 'command': [ 82 'command': [
76 '../testing/test_env.py', 83 '../testing/test_env.py',
77 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)', 84 '<(PRODUCT_DIR)/interactive_ui_tests<(EXECUTABLE_SUFFIX)',
78 '--test-launcher-bot-mode', 85 '--test-launcher-bot-mode',
79 '--asan=<(asan)', 86 '--asan=<(asan)',
80 '--lsan=<(lsan)', 87 '--lsan=<(lsan)',
81 '--msan=<(msan)', 88 '--msan=<(msan)',
82 '--tsan=<(tsan)', 89 '--tsan=<(tsan)',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 '<(PRODUCT_DIR)/resources/chromeos/', 129 '<(PRODUCT_DIR)/resources/chromeos/',
123 ], 130 ],
124 }, 131 },
125 }], 132 }],
126 ], 133 ],
127 'includes': [ 134 'includes': [
128 '../base/base.isolate', 135 '../base/base.isolate',
129 '../gin/v8.isolate', 136 '../gin/v8.isolate',
130 ], 137 ],
131 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698