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

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: Fix trailing slash 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 '../net/tools/testserver/', 71 '../net/tools/testserver/',
72 '../testing/test_env.py', 72 '../testing/test_env.py',
73 '../third_party/pyftpdlib/', 73 '../third_party/pyftpdlib/',
74 '../third_party/pywebsocket/', 74 '../third_party/pywebsocket/',
75 '../third_party/tlslite/', 75 '../third_party/tlslite/',
76 '<(PRODUCT_DIR)/pyproto/google/', 76 '<(PRODUCT_DIR)/pyproto/google/',
77 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', 77 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)',
78 ], 78 ],
79 }, 79 },
80 }], 80 }],
81 ['OS=="mac" and asan==1', {
82 'variables': {
83 'files': [
84 '<(PRODUCT_DIR)/unit_tests.dSYM/',
85 ],
86 },
87 }],
81 ['OS=="linux" or OS=="mac"', { 88 ['OS=="linux" or OS=="mac"', {
82 'variables': { 89 'variables': {
83 'read_only': 1, 90 'read_only': 1,
84 }, 91 },
85 }], 92 }],
86 ['OS=="mac"', { 93 ['OS=="mac"', {
87 'variables': { 94 'variables': {
88 'files': [ 95 'files': [
89 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 96 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
90 '<(PRODUCT_DIR)/exif.so', 97 '<(PRODUCT_DIR)/exif.so',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/chromeos/', 146 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/chromeos/',
140 ], 147 ],
141 }, 148 },
142 }], 149 }],
143 ], 150 ],
144 'includes': [ 151 'includes': [
145 '../base/base.isolate', 152 '../base/base.isolate',
146 '../gin/v8.isolate', 153 '../gin/v8.isolate',
147 ], 154 ],
148 } 155 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698