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

Side by Side Diff: chrome/unit_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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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=="android" or OS=="linux" or OS=="win" or OS=="mac"', { 6 ['OS=="android" or OS=="linux" or OS=="win" or OS=="mac"', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/google_now/', 9 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/google_now/',
10 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/print_preview/', 10 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/print_preview/',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 '../net/tools/testserver/', 73 '../net/tools/testserver/',
74 '../testing/test_env.py', 74 '../testing/test_env.py',
75 '../third_party/pyftpdlib/', 75 '../third_party/pyftpdlib/',
76 '../third_party/pywebsocket/', 76 '../third_party/pywebsocket/',
77 '../third_party/tlslite/', 77 '../third_party/tlslite/',
78 '<(PRODUCT_DIR)/pyproto/google/', 78 '<(PRODUCT_DIR)/pyproto/google/',
79 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', 79 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)',
80 ], 80 ],
81 }, 81 },
82 }], 82 }],
83 ['OS=="mac" and asan==1', {
84 'variables': {
85 'files': [
86 '<(PRODUCT_DIR)/unit_tests.dSYM/',
87 ],
88 },
89 }],
83 ['OS=="linux" or OS=="mac"', { 90 ['OS=="linux" or OS=="mac"', {
84 'variables': { 91 'variables': {
85 'read_only': 1, 92 'read_only': 1,
86 }, 93 },
87 }], 94 }],
88 ['OS=="mac"', { 95 ['OS=="mac"', {
89 'variables': { 96 'variables': {
90 'files': [ 97 'files': [
91 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 98 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
92 '<(PRODUCT_DIR)/exif.so', 99 '<(PRODUCT_DIR)/exif.so',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/chromeos/', 150 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/chromeos/',
144 ], 151 ],
145 }, 152 },
146 }], 153 }],
147 ], 154 ],
148 'includes': [ 155 'includes': [
149 '../base/base.isolate', 156 '../base/base.isolate',
150 '../gin/v8.isolate', 157 '../gin/v8.isolate',
151 ], 158 ],
152 } 159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698