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

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

Issue 2765593002: gpu/config: Use angle::GetSystemInfo on Mac (Closed)
Patch Set: gpu/config: Use angle::GetSystemInfo on Mac Created 3 years, 9 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 | « no previous file | gpu/config/gpu_info_collector.cc » ('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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "setupapi.lib", 85 "setupapi.lib",
86 ] 86 ]
87 87
88 if (is_chrome_branded && is_official_build) { 88 if (is_chrome_branded && is_official_build) {
89 sources += [ 89 sources += [
90 "//third_party/amd/AmdCfxPxExt.h", 90 "//third_party/amd/AmdCfxPxExt.h",
91 "//third_party/amd/amd_videocard_info_win.cc", 91 "//third_party/amd/amd_videocard_info_win.cc",
92 ] 92 ]
93 } 93 }
94 } 94 }
95 if (is_linux) { 95 if (is_linux || is_mac) {
96 deps += [ "//third_party/angle:angle_gpu_info_util" ] 96 deps += [ "//third_party/angle:angle_gpu_info_util" ]
97 } 97 }
98 if (is_mac) {
99 libs = [
100 "IOKit.framework",
101 "CoreFoundation.framework",
102 ]
103 }
104 } 98 }
OLDNEW
« no previous file with comments | « no previous file | gpu/config/gpu_info_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698