| 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 26 matching lines...) Expand all Loading... |
| 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", | 44 "gpu_driver_bug_workarounds.cc", |
| 45 "gpu_driver_bug_workarounds.h", | 45 "gpu_driver_bug_workarounds.h", |
| 46 "gpu_dx_diagnostics_win.cc", | 46 "gpu_dx_diagnostics_win.cc", |
| 47 "gpu_feature_info.cc", |
| 48 "gpu_feature_info.h", |
| 47 "gpu_feature_type.h", | 49 "gpu_feature_type.h", |
| 50 "gpu_finch_features.cc", |
| 51 "gpu_finch_features.h", |
| 48 "gpu_info.cc", | 52 "gpu_info.cc", |
| 49 "gpu_info.h", | 53 "gpu_info.h", |
| 50 "gpu_info_collector.cc", | 54 "gpu_info_collector.cc", |
| 51 "gpu_info_collector.h", | 55 "gpu_info_collector.h", |
| 52 "gpu_info_collector_android.cc", | 56 "gpu_info_collector_android.cc", |
| 53 "gpu_info_collector_linux.cc", | 57 "gpu_info_collector_linux.cc", |
| 54 "gpu_info_collector_linux.h", | 58 "gpu_info_collector_linux.h", |
| 55 "gpu_info_collector_mac.mm", | 59 "gpu_info_collector_mac.mm", |
| 56 "gpu_info_collector_ozone.cc", | 60 "gpu_info_collector_ozone.cc", |
| 57 "gpu_info_collector_win.cc", | 61 "gpu_info_collector_win.cc", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "//third_party/libXNVCtrl", | 120 "//third_party/libXNVCtrl", |
| 117 "//ui/gfx/x", | 121 "//ui/gfx/x", |
| 118 ] | 122 ] |
| 119 } else { | 123 } else { |
| 120 sources -= [ "gpu_info_collector_x11.cc" ] | 124 sources -= [ "gpu_info_collector_x11.cc" ] |
| 121 } | 125 } |
| 122 if (!use_ozone) { | 126 if (!use_ozone) { |
| 123 sources -= [ "gpu_info_collector_ozone.cc" ] | 127 sources -= [ "gpu_info_collector_ozone.cc" ] |
| 124 } | 128 } |
| 125 } | 129 } |
| OLD | NEW |