| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "//base", | 83 "//base", |
| 84 "//third_party/re2", | 84 "//third_party/re2", |
| 85 "//ui/gl", | 85 "//ui/gl", |
| 86 "//ui/gl/init", | 86 "//ui/gl/init", |
| 87 ] | 87 ] |
| 88 | 88 |
| 89 # Prefer mesa GL headers to system headers, which cause problems on Win. | 89 # Prefer mesa GL headers to system headers, which cause problems on Win. |
| 90 include_dirs = [ "//third_party/mesa/src/include" ] | 90 include_dirs = [ "//third_party/mesa/src/include" ] |
| 91 | 91 |
| 92 if (is_win) { | 92 if (is_win) { |
| 93 deps += [ "//third_party/libxml" ] | |
| 94 libs = [ | 93 libs = [ |
| 95 "dxguid.lib", | 94 "dxguid.lib", |
| 96 "setupapi.lib", | 95 "setupapi.lib", |
| 97 ] | 96 ] |
| 98 | 97 |
| 99 if (is_chrome_branded && is_official_build) { | 98 if (is_chrome_branded && is_official_build) { |
| 100 sources += [ | 99 sources += [ |
| 101 "//third_party/amd/AmdCfxPxExt.h", | 100 "//third_party/amd/AmdCfxPxExt.h", |
| 102 "//third_party/amd/amd_videocard_info_win.cc", | 101 "//third_party/amd/amd_videocard_info_win.cc", |
| 103 ] | 102 ] |
| 104 } | 103 } |
| 105 } | 104 } |
| 106 if (is_linux || is_mac) { | 105 if (is_linux || is_mac) { |
| 107 deps += [ "//third_party/angle:angle_gpu_info_util" ] | 106 deps += [ "//third_party/angle:angle_gpu_info_util" ] |
| 108 } | 107 } |
| 109 } | 108 } |
| OLD | NEW |