| 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 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 Loading... |
| 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 } |
| OLD | NEW |