blob: 5907ce15959bffc40cbeb5e52b055f2152347d69 [file] [log] [blame]
[email protected]d7b5cc72013-05-23 20:05:001# Copyright (c) 2012 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{
6 'dependencies': [
[email protected]d4e827f2014-01-22 09:27:257 '../third_party/re2/re2.gyp:re2',
[email protected]d7b5cc72013-05-23 20:05:008 '../base/base.gyp:base',
[email protected]d7b5cc72013-05-23 20:05:009 '../ui/gl/gl.gyp:gl',
kylechar5b9dec12016-05-16 15:40:5710 '../ui/gl/init/gl_init.gyp:gl_init',
[email protected]d7b5cc72013-05-23 20:05:0011 ],
12 'include_dirs': [
13 '..',
14 ],
15 'sources': [
16 'config/dx_diag_node.cc',
17 'config/dx_diag_node.h',
18 'config/gpu_blacklist.cc',
19 'config/gpu_blacklist.h',
[email protected]d7b5cc72013-05-23 20:05:0020 'config/gpu_control_list.cc',
21 'config/gpu_control_list.h',
satoruxc5bd7a32015-02-18 01:54:5222 'config/gpu_control_list_jsons.h',
[email protected]d7b5cc72013-05-23 20:05:0023 'config/gpu_driver_bug_list.cc',
24 'config/gpu_driver_bug_list.h',
satoruxc5bd7a32015-02-18 01:54:5225 'config/gpu_driver_bug_list_json.cc',
[email protected]d7b5cc72013-05-23 20:05:0026 'config/gpu_driver_bug_workaround_type.h',
j.isorce265b2e562016-04-19 07:40:0227 'config/gpu_driver_bug_workarounds.cc',
28 'config/gpu_driver_bug_workarounds.h',
[email protected]d7b5cc72013-05-23 20:05:0029 'config/gpu_dx_diagnostics_win.cc',
30 'config/gpu_feature_type.h',
31 'config/gpu_info.cc',
32 'config/gpu_info.h',
satoruxc5bd7a32015-02-18 01:54:5233 'config/gpu_info_collector.cc',
34 'config/gpu_info_collector.h',
[email protected]d7b5cc72013-05-23 20:05:0035 'config/gpu_info_collector_android.cc',
[email protected]0971f242014-07-30 05:37:1836 'config/gpu_info_collector_linux.cc',
37 'config/gpu_info_collector_linux.h',
[email protected]d7b5cc72013-05-23 20:05:0038 'config/gpu_info_collector_mac.mm',
[email protected]d413efc2013-05-29 02:28:2939 'config/gpu_info_collector_ozone.cc',
[email protected]d7b5cc72013-05-23 20:05:0040 'config/gpu_info_collector_win.cc',
41 'config/gpu_info_collector_x11.cc',
tfarina15525c42015-04-28 19:04:1642 'config/gpu_switches.cc',
43 'config/gpu_switches.h',
[email protected]129f019e2013-05-28 23:38:0244 'config/gpu_test_config.cc',
45 'config/gpu_test_config.h',
46 'config/gpu_test_expectations_parser.cc',
47 'config/gpu_test_expectations_parser.h',
[email protected]d7b5cc72013-05-23 20:05:0048 'config/gpu_util.cc',
49 'config/gpu_util.h',
50 'config/software_rendering_list_json.cc',
51 ],
52 'conditions': [
53 ['OS=="win"', {
54 'dependencies': [
55 '../third_party/libxml/libxml.gyp:libxml',
56 ],
57 'link_settings': {
58 'libraries': [
[email protected]8a0c096a2013-05-24 21:30:2259 '-ldxguid.lib',
[email protected]d7b5cc72013-05-23 20:05:0060 '-lsetupapi.lib',
61 ],
62 },
[email protected]f2f321b2013-05-24 18:30:3663 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
64 'msvs_disabled_warnings': [ 4267, ],
[email protected]d7b5cc72013-05-23 20:05:0065 }],
[email protected]92aa6b572014-07-22 03:15:1366 ['OS=="win" and branding=="Chrome" and buildtype=="Official"', {
[email protected]d7b5cc72013-05-23 20:05:0067 'sources': [
68 '../third_party/amd/AmdCfxPxExt.h',
69 '../third_party/amd/amd_videocard_info_win.cc',
70 ],
71 }],
bedupont65ce5acc2014-11-04 16:30:4172 ['OS=="linux" and use_libpci==1 and (use_x11==1 or use_ozone==1)', {
[email protected]0971f242014-07-30 05:37:1873 'dependencies': [
74 '../build/linux/system.gyp:libpci',
75 ],
76 }],
[email protected]d7b5cc72013-05-23 20:05:0077 ['OS=="linux" and use_x11==1', {
78 'dependencies': [
[email protected]31d96f22014-04-03 07:03:0679 '../build/linux/system.gyp:x11',
80 '../build/linux/system.gyp:xext',
[email protected]d7b5cc72013-05-23 20:05:0081 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl',
thakis603fc872015-01-19 05:42:2982 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
[email protected]d7b5cc72013-05-23 20:05:0083 ],
84 }],
85 ],
86}