| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//content/browser/browser.gni") | 8 import("//content/browser/browser.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 | 10 |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 ] | 216 ] |
| 217 deps += [ | 217 deps += [ |
| 218 "//third_party/iaccessible2", | 218 "//third_party/iaccessible2", |
| 219 "//third_party/isimpledom", | 219 "//third_party/isimpledom", |
| 220 ] | 220 ] |
| 221 libs += [ | 221 libs += [ |
| 222 "comctl32.lib", | 222 "comctl32.lib", |
| 223 "dinput8.lib", | 223 "dinput8.lib", |
| 224 "dwmapi.lib", | 224 "dwmapi.lib", |
| 225 "dxguid.lib", | 225 "dxguid.lib", |
| 226 "oleacc.lib", |
| 226 "sensorsapi.lib", | 227 "sensorsapi.lib", |
| 227 "portabledeviceguids.lib", | 228 "portabledeviceguids.lib", |
| 228 ] | 229 ] |
| 229 | 230 |
| 230 # TODI(GYP) | 231 # TODI(GYP) |
| 231 # 'msvs_settings': { | 232 # 'msvs_settings': { |
| 232 # 'VCLinkerTool': { | 233 # 'VCLinkerTool': { |
| 233 # 'DelayLoadDLLs': [ | 234 # 'DelayLoadDLLs': [ |
| 234 # 'dinput8.dll', | 235 # 'dinput8.dll', |
| 235 # 'user32.dll', | 236 # 'user32.dll', |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 } | 451 } |
| 451 | 452 |
| 452 if (is_linux && use_openssl) { | 453 if (is_linux && use_openssl) { |
| 453 deps += [ "//third_party/boringssl" ] | 454 deps += [ "//third_party/boringssl" ] |
| 454 } | 455 } |
| 455 | 456 |
| 456 if (enable_media_mojo_renderer) { | 457 if (enable_media_mojo_renderer) { |
| 457 deps += [ "//media/mojo/services:renderer_service" ] | 458 deps += [ "//media/mojo/services:renderer_service" ] |
| 458 } | 459 } |
| 459 } | 460 } |
| OLD | NEW |