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

Side by Side Diff: content/content_gl_tests.isolate

Issue 1213693003: Add PDB files for content_gl_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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=="android" or OS=="linux" or OS=="mac" or OS=="win"', { 6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': { 7 'variables': {
8 'command': [ 8 'command': [
9 '<(PRODUCT_DIR)/content_gl_tests<(EXECUTABLE_SUFFIX)', 9 '<(PRODUCT_DIR)/content_gl_tests<(EXECUTABLE_SUFFIX)',
10 ], 10 ],
(...skipping 16 matching lines...) Expand all
27 ['OS=="win"', { 27 ['OS=="win"', {
28 'variables': { 28 'variables': {
29 'files': [ 29 'files': [
30 '<(PRODUCT_DIR)/d3dcompiler_47.dll', 30 '<(PRODUCT_DIR)/d3dcompiler_47.dll',
31 '<(PRODUCT_DIR)/libEGL.dll', 31 '<(PRODUCT_DIR)/libEGL.dll',
32 '<(PRODUCT_DIR)/libGLESv2.dll', 32 '<(PRODUCT_DIR)/libGLESv2.dll',
33 '<(PRODUCT_DIR)/osmesa.dll', 33 '<(PRODUCT_DIR)/osmesa.dll',
34 ], 34 ],
35 }, 35 },
36 }], 36 }],
37 # These PDBs are needed in order to get reasonable stack traces if
38 # an assertion fires or a crash occurs. Add more as necessary.
39 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
40 'variables': {
41 'files': [
42 '<(PRODUCT_DIR)/content_gl_tests.exe.pdb',
43 ],
44 },
45 }],
46 ['OS=="win" and component=="shared_library" and (fastbuild==0 or fastbuild== 1)', {
47 'variables': {
48 'files': [
49 '<(PRODUCT_DIR)/base.dll.pdb',
50 '<(PRODUCT_DIR)/content.dll.pdb',
51 ],
52 },
53 }],
37 ], 54 ],
38 'includes': [ 55 'includes': [
39 '../base/base.isolate', 56 '../base/base.isolate',
40 '../gin/v8.isolate', 57 '../gin/v8.isolate',
41 ], 58 ],
42 } 59 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698