blob: 11e4736f7218de3b54c817039a23864e30b59d49 [file] [log] [blame]
jam13511392014-09-22 16:29:021# Copyright 2013 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4{
5 'conditions': [
6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': {
8 'command': [
9 '<(PRODUCT_DIR)/content_gl_tests<(EXECUTABLE_SUFFIX)',
10 ],
jam13511392014-09-22 16:29:0211 },
12 }],
13 # TODO(kbr): these two dependencies seem to be necessary when
14 # running the component build to avoid "Failed to mmap datapack"
15 # errors. Should investigate further.
16 ['OS=="linux" or OS=="win"', {
17 'variables': {
maruel82147542014-10-01 13:21:4218 'files': [
jam13511392014-09-22 16:29:0219 '<(PRODUCT_DIR)/content_resources.pak',
20 '<(PRODUCT_DIR)/ui_test.pak',
21 ],
22 },
23 }],
jam13511392014-09-22 16:29:0224 ['OS=="win"', {
25 'variables': {
maruel82147542014-10-01 13:21:4226 'files': [
scottmga6675a5f2014-11-15 01:37:4727 '<(PRODUCT_DIR)/d3dcompiler_47.dll',
jam13511392014-09-22 16:29:0228 '<(PRODUCT_DIR)/libEGL.dll',
29 '<(PRODUCT_DIR)/libGLESv2.dll',
jam13511392014-09-22 16:29:0230 '<(PRODUCT_DIR)/osmesa.dll',
31 ],
32 },
33 }],
kbrcef8c85a2015-06-26 01:20:1134 # These PDBs are needed in order to get reasonable stack traces if
35 # an assertion fires or a crash occurs. Add more as necessary.
36 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
37 'variables': {
38 'files': [
39 '<(PRODUCT_DIR)/content_gl_tests.exe.pdb',
40 ],
41 },
42 }],
43 ['OS=="win" and component=="shared_library" and (fastbuild==0 or fastbuild==1)', {
44 'variables': {
45 'files': [
46 '<(PRODUCT_DIR)/base.dll.pdb',
47 '<(PRODUCT_DIR)/content.dll.pdb',
48 ],
49 },
50 }],
jam13511392014-09-22 16:29:0251 ],
52 'includes': [
John Abd-El-Malek828a02702014-09-22 22:14:1253 '../base/base.isolate',
baixo3a3c88a2014-10-28 11:52:2154 '../gin/v8.isolate',
jam13511392014-09-22 16:29:0255 ],
56}