Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: gpu/config/BUILD.gn

Issue 2756793003: Move GPU blacklist and driver bug workaround list from json to data struct. (Closed)
Patch Set: pure rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/BUILD.gn ('k') | gpu/config/gpu_blacklist.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 group("config") { 9 group("config") {
10 if (is_component_build) { 10 if (is_component_build) {
(...skipping 22 matching lines...) Expand all
33 # depending on this directly or the component build will break. 33 # depending on this directly or the component build will break.
34 visibility = [ "//gpu/*" ] 34 visibility = [ "//gpu/*" ]
35 35
36 sources = [ 36 sources = [
37 "dx_diag_node.cc", 37 "dx_diag_node.cc",
38 "dx_diag_node.h", 38 "dx_diag_node.h",
39 "gpu_blacklist.cc", 39 "gpu_blacklist.cc",
40 "gpu_blacklist.h", 40 "gpu_blacklist.h",
41 "gpu_control_list.cc", 41 "gpu_control_list.cc",
42 "gpu_control_list.h", 42 "gpu_control_list.h",
43 "gpu_control_list_jsons.h",
44 "gpu_driver_bug_list.cc", 43 "gpu_driver_bug_list.cc",
45 "gpu_driver_bug_list.h", 44 "gpu_driver_bug_list.h",
46 "gpu_driver_bug_list_json.cc", 45 "gpu_driver_bug_list_arrays_and_structs_autogen.h",
46 "gpu_driver_bug_list_autogen.cc",
47 "gpu_driver_bug_list_autogen.h",
48 "gpu_driver_bug_list_exceptions_autogen.h",
47 "gpu_driver_bug_workaround_type.h", 49 "gpu_driver_bug_workaround_type.h",
48 "gpu_driver_bug_workarounds.cc", 50 "gpu_driver_bug_workarounds.cc",
49 "gpu_driver_bug_workarounds.h", 51 "gpu_driver_bug_workarounds.h",
50 "gpu_dx_diagnostics_win.cc", 52 "gpu_dx_diagnostics_win.cc",
51 "gpu_feature_info.cc", 53 "gpu_feature_info.cc",
52 "gpu_feature_info.h", 54 "gpu_feature_info.h",
53 "gpu_feature_type.h", 55 "gpu_feature_type.h",
54 "gpu_finch_features.cc", 56 "gpu_finch_features.cc",
55 "gpu_finch_features.h", 57 "gpu_finch_features.h",
56 "gpu_info.cc", 58 "gpu_info.cc",
57 "gpu_info.h", 59 "gpu_info.h",
58 "gpu_info_collector.cc", 60 "gpu_info_collector.cc",
59 "gpu_info_collector.h", 61 "gpu_info_collector.h",
60 "gpu_info_collector_android.cc", 62 "gpu_info_collector_android.cc",
61 "gpu_info_collector_linux.cc", 63 "gpu_info_collector_linux.cc",
62 "gpu_info_collector_mac.mm", 64 "gpu_info_collector_mac.mm",
63 "gpu_info_collector_win.cc", 65 "gpu_info_collector_win.cc",
64 "gpu_switches.cc", 66 "gpu_switches.cc",
65 "gpu_switches.h", 67 "gpu_switches.h",
66 "gpu_test_config.cc", 68 "gpu_test_config.cc",
67 "gpu_test_config.h", 69 "gpu_test_config.h",
68 "gpu_test_expectations_parser.cc", 70 "gpu_test_expectations_parser.cc",
69 "gpu_test_expectations_parser.h", 71 "gpu_test_expectations_parser.h",
70 "gpu_util.cc", 72 "gpu_util.cc",
71 "gpu_util.h", 73 "gpu_util.h",
72 "software_rendering_list_json.cc", 74 "software_rendering_list_arrays_and_structs_autogen.h",
75 "software_rendering_list_autogen.cc",
76 "software_rendering_list_autogen.h",
77 "software_rendering_list_exceptions_autogen.h",
73 ] 78 ]
74 79
75 configs += [ 80 configs += [
76 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 81 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
77 "//build/config/compiler:no_size_t_to_int_warning", 82 "//build/config/compiler:no_size_t_to_int_warning",
78 "//gpu:gpu_implementation", 83 "//gpu:gpu_implementation",
79 ] 84 ]
80 85
81 deps = [ 86 deps = [
82 ":crash_keys", 87 ":crash_keys",
(...skipping 16 matching lines...) Expand all
99 sources += [ 104 sources += [
100 "//third_party/amd/AmdCfxPxExt.h", 105 "//third_party/amd/AmdCfxPxExt.h",
101 "//third_party/amd/amd_videocard_info_win.cc", 106 "//third_party/amd/amd_videocard_info_win.cc",
102 ] 107 ]
103 } 108 }
104 } 109 }
105 if (is_linux || is_mac) { 110 if (is_linux || is_mac) {
106 deps += [ "//third_party/angle:angle_gpu_info_util" ] 111 deps += [ "//third_party/angle:angle_gpu_info_util" ]
107 } 112 }
108 } 113 }
OLDNEW
« no previous file with comments | « gpu/BUILD.gn ('k') | gpu/config/gpu_blacklist.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698