| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 # Use the PCI lib to collect GPU information on Linux. | 8 # Use the PCI lib to collect GPU information on Linux. |
| 9 use_libpci = true | 9 use_libpci = true |
| 10 } | 10 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "gpu_info.h", | 28 "gpu_info.h", |
| 29 "gpu_info_collector.cc", | 29 "gpu_info_collector.cc", |
| 30 "gpu_info_collector.h", | 30 "gpu_info_collector.h", |
| 31 "gpu_info_collector_android.cc", | 31 "gpu_info_collector_android.cc", |
| 32 "gpu_info_collector_linux.cc", | 32 "gpu_info_collector_linux.cc", |
| 33 "gpu_info_collector_linux.h", | 33 "gpu_info_collector_linux.h", |
| 34 "gpu_info_collector_mac.mm", | 34 "gpu_info_collector_mac.mm", |
| 35 "gpu_info_collector_ozone.cc", | 35 "gpu_info_collector_ozone.cc", |
| 36 "gpu_info_collector_win.cc", | 36 "gpu_info_collector_win.cc", |
| 37 "gpu_info_collector_x11.cc", | 37 "gpu_info_collector_x11.cc", |
| 38 "gpu_performance_stats.h", | |
| 39 "gpu_test_config.cc", | 38 "gpu_test_config.cc", |
| 40 "gpu_test_config.h", | 39 "gpu_test_config.h", |
| 41 "gpu_test_expectations_parser.cc", | 40 "gpu_test_expectations_parser.cc", |
| 42 "gpu_test_expectations_parser.h", | 41 "gpu_test_expectations_parser.h", |
| 43 "gpu_util.cc", | 42 "gpu_util.cc", |
| 44 "gpu_util.h", | 43 "gpu_util.h", |
| 45 "software_rendering_list_json.cc", | 44 "software_rendering_list_json.cc", |
| 46 ] | 45 ] |
| 47 | 46 |
| 48 # TODO(jschuh): size_t to int. | 47 # TODO(jschuh): size_t to int. |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "//third_party/libXNVCtrl", | 87 "//third_party/libXNVCtrl", |
| 89 "//ui/gfx/x", | 88 "//ui/gfx/x", |
| 90 ] | 89 ] |
| 91 } else { | 90 } else { |
| 92 sources -= [ "gpu_info_collector_x11.cc" ] | 91 sources -= [ "gpu_info_collector_x11.cc" ] |
| 93 } | 92 } |
| 94 if (!use_ozone) { | 93 if (!use_ozone) { |
| 95 sources -= [ "gpu_info_collector_ozone.cc" ] | 94 sources -= [ "gpu_info_collector_ozone.cc" ] |
| 96 } | 95 } |
| 97 } | 96 } |
| OLD | NEW |