[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 1 | # 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] | d4e827f | 2014-01-22 09:27:25 | [diff] [blame] | 7 | '../third_party/re2/re2.gyp:re2', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 8 | '../base/base.gyp:base', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 9 | '../ui/gl/gl.gyp:gl', |
kylechar | 5b9dec1 | 2016-05-16 15:40:57 | [diff] [blame] | 10 | '../ui/gl/init/gl_init.gyp:gl_init', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 11 | ], |
| 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] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 20 | 'config/gpu_control_list.cc', |
| 21 | 'config/gpu_control_list.h', |
satorux | c5bd7a3 | 2015-02-18 01:54:52 | [diff] [blame] | 22 | 'config/gpu_control_list_jsons.h', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 23 | 'config/gpu_driver_bug_list.cc', |
| 24 | 'config/gpu_driver_bug_list.h', |
satorux | c5bd7a3 | 2015-02-18 01:54:52 | [diff] [blame] | 25 | 'config/gpu_driver_bug_list_json.cc', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 26 | 'config/gpu_driver_bug_workaround_type.h', |
j.isorce | 265b2e56 | 2016-04-19 07:40:02 | [diff] [blame] | 27 | 'config/gpu_driver_bug_workarounds.cc', |
| 28 | 'config/gpu_driver_bug_workarounds.h', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 29 | 'config/gpu_dx_diagnostics_win.cc', |
| 30 | 'config/gpu_feature_type.h', |
| 31 | 'config/gpu_info.cc', |
| 32 | 'config/gpu_info.h', |
satorux | c5bd7a3 | 2015-02-18 01:54:52 | [diff] [blame] | 33 | 'config/gpu_info_collector.cc', |
| 34 | 'config/gpu_info_collector.h', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 35 | 'config/gpu_info_collector_android.cc', |
[email protected] | 0971f24 | 2014-07-30 05:37:18 | [diff] [blame] | 36 | 'config/gpu_info_collector_linux.cc', |
| 37 | 'config/gpu_info_collector_linux.h', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 38 | 'config/gpu_info_collector_mac.mm', |
[email protected] | d413efc | 2013-05-29 02:28:29 | [diff] [blame] | 39 | 'config/gpu_info_collector_ozone.cc', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 40 | 'config/gpu_info_collector_win.cc', |
| 41 | 'config/gpu_info_collector_x11.cc', |
tfarina | 15525c4 | 2015-04-28 19:04:16 | [diff] [blame] | 42 | 'config/gpu_switches.cc', |
| 43 | 'config/gpu_switches.h', |
[email protected] | 129f019e | 2013-05-28 23:38:02 | [diff] [blame] | 44 | '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] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 48 | '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] | 8a0c096a | 2013-05-24 21:30:22 | [diff] [blame] | 59 | '-ldxguid.lib', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 60 | '-lsetupapi.lib', |
| 61 | ], |
| 62 | }, |
[email protected] | f2f321b | 2013-05-24 18:30:36 | [diff] [blame] | 63 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 64 | 'msvs_disabled_warnings': [ 4267, ], |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 65 | }], |
[email protected] | 92aa6b57 | 2014-07-22 03:15:13 | [diff] [blame] | 66 | ['OS=="win" and branding=="Chrome" and buildtype=="Official"', { |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 67 | 'sources': [ |
| 68 | '../third_party/amd/AmdCfxPxExt.h', |
| 69 | '../third_party/amd/amd_videocard_info_win.cc', |
| 70 | ], |
| 71 | }], |
bedupont | 65ce5acc | 2014-11-04 16:30:41 | [diff] [blame] | 72 | ['OS=="linux" and use_libpci==1 and (use_x11==1 or use_ozone==1)', { |
[email protected] | 0971f24 | 2014-07-30 05:37:18 | [diff] [blame] | 73 | 'dependencies': [ |
| 74 | '../build/linux/system.gyp:libpci', |
| 75 | ], |
| 76 | }], |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 77 | ['OS=="linux" and use_x11==1', { |
| 78 | 'dependencies': [ |
[email protected] | 31d96f2 | 2014-04-03 07:03:06 | [diff] [blame] | 79 | '../build/linux/system.gyp:x11', |
| 80 | '../build/linux/system.gyp:xext', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 81 | '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl', |
thakis | 603fc87 | 2015-01-19 05:42:29 | [diff] [blame] | 82 | '../ui/gfx/x/gfx_x11.gyp:gfx_x11', |
[email protected] | d7b5cc7 | 2013-05-23 20:05:00 | [diff] [blame] | 83 | ], |
| 84 | }], |
| 85 | ], |
| 86 | } |