| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # Use the PCI lib to collect GPU information on Linux. | 10 # Use the PCI lib to collect GPU information on Linux. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "dx_diag_node.h", | 34 "dx_diag_node.h", |
| 35 "gpu_blacklist.cc", | 35 "gpu_blacklist.cc", |
| 36 "gpu_blacklist.h", | 36 "gpu_blacklist.h", |
| 37 "gpu_control_list.cc", | 37 "gpu_control_list.cc", |
| 38 "gpu_control_list.h", | 38 "gpu_control_list.h", |
| 39 "gpu_control_list_jsons.h", | 39 "gpu_control_list_jsons.h", |
| 40 "gpu_driver_bug_list.cc", | 40 "gpu_driver_bug_list.cc", |
| 41 "gpu_driver_bug_list.h", | 41 "gpu_driver_bug_list.h", |
| 42 "gpu_driver_bug_list_json.cc", | 42 "gpu_driver_bug_list_json.cc", |
| 43 "gpu_driver_bug_workaround_type.h", | 43 "gpu_driver_bug_workaround_type.h", |
| 44 "gpu_driver_bug_workarounds.cc", |
| 45 "gpu_driver_bug_workarounds.h", |
| 44 "gpu_dx_diagnostics_win.cc", | 46 "gpu_dx_diagnostics_win.cc", |
| 45 "gpu_feature_type.h", | 47 "gpu_feature_type.h", |
| 46 "gpu_info.cc", | 48 "gpu_info.cc", |
| 47 "gpu_info.h", | 49 "gpu_info.h", |
| 48 "gpu_info_collector.cc", | 50 "gpu_info_collector.cc", |
| 49 "gpu_info_collector.h", | 51 "gpu_info_collector.h", |
| 50 "gpu_info_collector_android.cc", | 52 "gpu_info_collector_android.cc", |
| 51 "gpu_info_collector_linux.cc", | 53 "gpu_info_collector_linux.cc", |
| 52 "gpu_info_collector_linux.h", | 54 "gpu_info_collector_linux.h", |
| 53 "gpu_info_collector_mac.mm", | 55 "gpu_info_collector_mac.mm", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "//third_party/libXNVCtrl", | 109 "//third_party/libXNVCtrl", |
| 108 "//ui/gfx/x", | 110 "//ui/gfx/x", |
| 109 ] | 111 ] |
| 110 } else { | 112 } else { |
| 111 sources -= [ "gpu_info_collector_x11.cc" ] | 113 sources -= [ "gpu_info_collector_x11.cc" ] |
| 112 } | 114 } |
| 113 if (!use_ozone) { | 115 if (!use_ozone) { |
| 114 sources -= [ "gpu_info_collector_ozone.cc" ] | 116 sources -= [ "gpu_info_collector_ozone.cc" ] |
| 115 } | 117 } |
| 116 } | 118 } |
| OLD | NEW |