Chromium Code Reviews| 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/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 if (is_chromeos && current_cpu != "arm") { | 10 if (is_chromeos && current_cpu != "arm") { |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 403 | 403 |
| 404 if (is_win) { | 404 if (is_win) { |
| 405 sources += [ | 405 sources += [ |
| 406 "gpu/media/dxva_video_decode_accelerator.cc", | 406 "gpu/media/dxva_video_decode_accelerator.cc", |
| 407 "gpu/media/dxva_video_decode_accelerator.h", | 407 "gpu/media/dxva_video_decode_accelerator.h", |
| 408 ] | 408 ] |
| 409 include_dirs += [ "//third_party/khronos" ] | 409 include_dirs += [ "//third_party/khronos" ] |
| 410 deps += [ "//ui/gl" ] | 410 deps += [ "//ui/gl" ] |
| 411 libs += [ | 411 libs += [ |
| 412 "d3d9.lib", | 412 "d3d9.lib", |
| 413 "d3d11.lib", | |
|
DaleCurtis
2015/02/26 22:32:22
Needs the ldflags update you made to the .gypi bel
ananta
2015/02/26 23:32:56
Yes. Thanks for pointing that out.
| |
| 413 "dxva2.lib", | 414 "dxva2.lib", |
| 414 "strmiids.lib", | 415 "strmiids.lib", |
| 415 "mf.lib", | 416 "mf.lib", |
| 416 "mfplat.lib", | 417 "mfplat.lib", |
| 417 "mfuuid.lib", | 418 "mfuuid.lib", |
| 418 ] | 419 ] |
| 419 ldflags += [ | 420 ldflags += [ |
| 420 "/DELAYLOAD:d3d9.dll", | 421 "/DELAYLOAD:d3d9.dll", |
| 421 "/DELAYLOAD:dxva2.dll", | 422 "/DELAYLOAD:dxva2.dll", |
| 422 "/DELAYLOAD:mf.dll", | 423 "/DELAYLOAD:mf.dll", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 470 "permission_service.mojom", | 471 "permission_service.mojom", |
| 471 "presentation/presentation_service.mojom", | 472 "presentation/presentation_service.mojom", |
| 472 "render_frame_setup.mojom", | 473 "render_frame_setup.mojom", |
| 473 ] | 474 ] |
| 474 | 475 |
| 475 deps = [ | 476 deps = [ |
| 476 "//content/public/common:mojo_bindings", | 477 "//content/public/common:mojo_bindings", |
| 477 "//third_party/mojo/src/mojo/public/interfaces/application:application", | 478 "//third_party/mojo/src/mojo/public/interfaces/application:application", |
| 478 ] | 479 ] |
| 479 } | 480 } |
| OLD | NEW |