| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |