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

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: 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) 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ], 70 ],
71 'files': [ 71 'files': [
72 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/', 72 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework/',
73 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/', 73 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/',
74 '<(PRODUCT_DIR)/<(mac_product_name).app/', 74 '<(PRODUCT_DIR)/<(mac_product_name).app/',
75 '<(PRODUCT_DIR)/exif.so', 75 '<(PRODUCT_DIR)/exif.so',
76 '<(PRODUCT_DIR)/ffmpegsumo.so', 76 '<(PRODUCT_DIR)/ffmpegsumo.so',
77 ], 77 ],
78 }, 78 },
79 }], 79 }],
80 ['OS=="mac" and asan==1', {
81 'variables': {
82 'files': [
83 '<(PRODUCT_DIR)/<(mac_product_name) Framework.framework.dSYM/',
84 '<(PRODUCT_DIR)/<(mac_product_name) Helper.app.dSYM/',
85 '<(PRODUCT_DIR)/<(mac_product_name).app.dSYM/',
86 '<(PRODUCT_DIR)/exif.so.dSYM/',
87 '<(PRODUCT_DIR)/ffmpegsumo.so.dSYM/',
88 ],
89 },
90 }],
80 ['OS=="win"', { 91 ['OS=="win"', {
81 'variables': { 92 'variables': {
82 'files': [ 93 'files': [
83 '<(PRODUCT_DIR)/<(version_full).manifest', 94 '<(PRODUCT_DIR)/<(version_full).manifest',
84 '<(PRODUCT_DIR)/chrome_200_percent.pak', 95 '<(PRODUCT_DIR)/chrome_200_percent.pak',
85 '<(PRODUCT_DIR)/chrome.dll', 96 '<(PRODUCT_DIR)/chrome.dll',
86 '<(PRODUCT_DIR)/chrome_elf.dll', 97 '<(PRODUCT_DIR)/chrome_elf.dll',
87 '<(PRODUCT_DIR)/ffmpegsumo.dll', 98 '<(PRODUCT_DIR)/ffmpegsumo.dll',
88 '<(PRODUCT_DIR)/libexif.dll', 99 '<(PRODUCT_DIR)/libexif.dll',
89 '<(PRODUCT_DIR)/osmesa.dll', 100 '<(PRODUCT_DIR)/osmesa.dll',
(...skipping 21 matching lines...) Expand all
111 '<(PRODUCT_DIR)/chrome_child.dll', 122 '<(PRODUCT_DIR)/chrome_child.dll',
112 ], 123 ],
113 }, 124 },
114 }], 125 }],
115 ], 126 ],
116 'includes': [ 127 'includes': [
117 'angle.isolate', 128 'angle.isolate',
118 '../gin/v8.isolate', 129 '../gin/v8.isolate',
119 ], 130 ],
120 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698