OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 { | 5 { |
6 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
8 '../third_party/re2/re2.gyp:re2', | 8 '../third_party/re2/re2.gyp:re2', |
9 '../ui/gl/gl.gyp:gl', | 9 '../ui/gl/gl.gyp:gl', |
10 ], | 10 ], |
(...skipping 12 matching lines...) Expand all Loading... |
23 'config/gpu_driver_bug_list.cc', | 23 'config/gpu_driver_bug_list.cc', |
24 'config/gpu_driver_bug_list.h', | 24 'config/gpu_driver_bug_list.h', |
25 'config/gpu_driver_bug_workaround_type.h', | 25 'config/gpu_driver_bug_workaround_type.h', |
26 'config/gpu_dx_diagnostics_win.cc', | 26 'config/gpu_dx_diagnostics_win.cc', |
27 'config/gpu_feature_type.h', | 27 'config/gpu_feature_type.h', |
28 'config/gpu_info.cc', | 28 'config/gpu_info.cc', |
29 'config/gpu_info.h', | 29 'config/gpu_info.h', |
30 'config/gpu_info_collector_android.cc', | 30 'config/gpu_info_collector_android.cc', |
31 'config/gpu_info_collector_mac.mm', | 31 'config/gpu_info_collector_mac.mm', |
32 'config/gpu_info_collector_ozone.cc', | 32 'config/gpu_info_collector_ozone.cc', |
| 33 'config/gpu_info_collector_wayland.cc', |
33 'config/gpu_info_collector_win.cc', | 34 'config/gpu_info_collector_win.cc', |
34 'config/gpu_info_collector_x11.cc', | 35 'config/gpu_info_collector_x11.cc', |
35 'config/gpu_info_collector.cc', | 36 'config/gpu_info_collector.cc', |
36 'config/gpu_info_collector.h', | 37 'config/gpu_info_collector.h', |
37 'config/gpu_performance_stats.h', | 38 'config/gpu_performance_stats.h', |
38 'config/gpu_switching_list_json.cc', | 39 'config/gpu_switching_list_json.cc', |
39 'config/gpu_switching_list.cc', | 40 'config/gpu_switching_list.cc', |
40 'config/gpu_switching_list.h', | 41 'config/gpu_switching_list.h', |
41 'config/gpu_switching_option.h', | 42 'config/gpu_switching_option.h', |
42 'config/gpu_test_config.cc', | 43 'config/gpu_test_config.cc', |
(...skipping 17 matching lines...) Expand all Loading... |
60 }, | 61 }, |
61 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 62 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
62 'msvs_disabled_warnings': [ 4267, ], | 63 'msvs_disabled_warnings': [ 4267, ], |
63 }], | 64 }], |
64 ['OS=="win" and branding=="Chrome"', { | 65 ['OS=="win" and branding=="Chrome"', { |
65 'sources': [ | 66 'sources': [ |
66 '../third_party/amd/AmdCfxPxExt.h', | 67 '../third_party/amd/AmdCfxPxExt.h', |
67 '../third_party/amd/amd_videocard_info_win.cc', | 68 '../third_party/amd/amd_videocard_info_win.cc', |
68 ], | 69 ], |
69 }], | 70 }], |
| 71 ['OS=="linux" and use_wayland==1', { |
| 72 'dependencies': [ |
| 73 '../build/linux/system.gyp:libpci', |
| 74 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl', |
| 75 ], |
| 76 }], |
70 ['OS=="linux" and use_x11==1', { | 77 ['OS=="linux" and use_x11==1', { |
71 'dependencies': [ | 78 'dependencies': [ |
72 '../build/linux/system.gyp:libpci', | 79 '../build/linux/system.gyp:libpci', |
73 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl', | 80 '../third_party/libXNVCtrl/libXNVCtrl.gyp:libXNVCtrl', |
74 ], | 81 ], |
75 }], | 82 }], |
76 ], | 83 ], |
77 } | 84 } |
OLD | NEW |