| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//mojo/public/mojo_application_manifest.gni") | 9 import("//mojo/public/mojo_application_manifest.gni") |
| 10 | 10 |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 ] | 225 ] |
| 226 deps += [ | 226 deps += [ |
| 227 "//third_party/iaccessible2", | 227 "//third_party/iaccessible2", |
| 228 "//third_party/isimpledom", | 228 "//third_party/isimpledom", |
| 229 ] | 229 ] |
| 230 libs += [ | 230 libs += [ |
| 231 "comctl32.lib", | 231 "comctl32.lib", |
| 232 "dinput8.lib", | 232 "dinput8.lib", |
| 233 "dwmapi.lib", | 233 "dwmapi.lib", |
| 234 "dxguid.lib", | 234 "dxguid.lib", |
| 235 "imm32.lib", |
| 235 "oleacc.lib", | 236 "oleacc.lib", |
| 236 "sensorsapi.lib", | 237 "sensorsapi.lib", |
| 237 "portabledeviceguids.lib", | 238 "portabledeviceguids.lib", |
| 238 ] | 239 ] |
| 239 | 240 |
| 240 # TODI(GYP) | 241 # TODI(GYP) |
| 241 # 'msvs_settings': { | 242 # 'msvs_settings': { |
| 242 # 'VCLinkerTool': { | 243 # 'VCLinkerTool': { |
| 243 # 'DelayLoadDLLs': [ | 244 # 'DelayLoadDLLs': [ |
| 244 # 'dinput8.dll', | 245 # 'dinput8.dll', |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 type = "exe" | 530 type = "exe" |
| 530 application_name = "chrome" | 531 application_name = "chrome" |
| 531 source = "mojo/chrome_manifest.json" | 532 source = "mojo/chrome_manifest.json" |
| 532 } | 533 } |
| 533 | 534 |
| 534 mojo_application_manifest("chrome_renderer_manifest") { | 535 mojo_application_manifest("chrome_renderer_manifest") { |
| 535 type = "exe" | 536 type = "exe" |
| 536 application_name = "chrome_renderer" | 537 application_name = "chrome_renderer" |
| 537 source = "mojo/chrome_renderer_manifest.json" | 538 source = "mojo/chrome_renderer_manifest.json" |
| 538 } | 539 } |
| OLD | NEW |