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

Side by Side Diff: chrome/chrome.isolate

Issue 859293002: Fix report symbolization on swarming bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'files': [ 8 'files': [
9 '<(PRODUCT_DIR)/libffmpegsumo.so', 9 '<(PRODUCT_DIR)/libffmpegsumo.so',
10 '<(PRODUCT_DIR)/libosmesa.so', 10 '<(PRODUCT_DIR)/libosmesa.so',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 ], 71 ],
72 'files': [ 72 'files': [
73 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 73 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
74 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/', 74 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/',
75 '<(PRODUCT_DIR)/<(mac_product_name).app/', 75 '<(PRODUCT_DIR)/<(mac_product_name).app/',
76 '<(PRODUCT_DIR)/exif.so', 76 '<(PRODUCT_DIR)/exif.so',
77 '<(PRODUCT_DIR)/ffmpegsumo.so', 77 '<(PRODUCT_DIR)/ffmpegsumo.so',
78 ], 78 ],
79 }, 79 },
80 }], 80 }],
81 ['OS=="mac" and asan==1', {
82 'variables': {
83 'files': [
84 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework.dSYM/',
85 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app.dSYM/',
86 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/',
87 '<(PRODUCT_DIR)/exif.so.dSYM/',
88 '<(PRODUCT_DIR)/ffmpegsumo.so.dSYM/',
89 ],
90 },
91 }],
81 ['OS=="win"', { 92 ['OS=="win"', {
82 'variables': { 93 'variables': {
83 'files': [ 94 'files': [
84 '<(PRODUCT_DIR)/<(version_full).manifest', 95 '<(PRODUCT_DIR)/<(version_full).manifest',
85 '<(PRODUCT_DIR)/chrome_200_percent.pak', 96 '<(PRODUCT_DIR)/chrome_200_percent.pak',
86 '<(PRODUCT_DIR)/chrome.dll', 97 '<(PRODUCT_DIR)/chrome.dll',
87 '<(PRODUCT_DIR)/chrome_elf.dll', 98 '<(PRODUCT_DIR)/chrome_elf.dll',
88 '<(PRODUCT_DIR)/ffmpegsumo.dll', 99 '<(PRODUCT_DIR)/ffmpegsumo.dll',
89 '<(PRODUCT_DIR)/libexif.dll', 100 '<(PRODUCT_DIR)/libexif.dll',
90 '<(PRODUCT_DIR)/osmesa.dll', 101 '<(PRODUCT_DIR)/osmesa.dll',
(...skipping 22 matching lines...) Expand all
113 '<(PRODUCT_DIR)/chrome_child.dll', 124 '<(PRODUCT_DIR)/chrome_child.dll',
114 ], 125 ],
115 }, 126 },
116 }], 127 }],
117 ], 128 ],
118 'includes': [ 129 'includes': [
119 'angle.isolate', 130 'angle.isolate',
120 '../gin/v8.isolate', 131 '../gin/v8.isolate',
121 ], 132 ],
122 } 133 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698