| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//media/gpu/args.gni") | 7 import("//media/gpu/args.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "android/media_codec_video_decoder.cc", | 215 "android/media_codec_video_decoder.cc", |
| 216 "android/media_codec_video_decoder.h", | 216 "android/media_codec_video_decoder.h", |
| 217 ] | 217 ] |
| 218 } | 218 } |
| 219 | 219 |
| 220 # TODO(xhwang): This is needed for AVDA to access the CDM directly. | 220 # TODO(xhwang): This is needed for AVDA to access the CDM directly. |
| 221 # Remove this dependency after VDAs are also running as part of the mojo | 221 # Remove this dependency after VDAs are also running as part of the mojo |
| 222 # media service. See http://crbug.com/522298 | 222 # media service. See http://crbug.com/522298 |
| 223 if (mojo_media_host == "gpu") { | 223 if (mojo_media_host == "gpu") { |
| 224 deps += [ "//media:cdm_manager" ] | 224 deps += [ "//media:cdm_manager" ] |
| 225 configs += [ "//media/mojo/services:mojo_media_config" ] |
| 225 } | 226 } |
| 226 } | 227 } |
| 227 | 228 |
| 228 if (is_chromeos || is_win) { | 229 if (is_chromeos || is_win) { |
| 229 sources += [ | 230 sources += [ |
| 230 "accelerated_video_decoder.h", | 231 "accelerated_video_decoder.h", |
| 231 "h264_decoder.cc", | 232 "h264_decoder.cc", |
| 232 "h264_decoder.h", | 233 "h264_decoder.h", |
| 233 "h264_dpb.cc", | 234 "h264_dpb.cc", |
| 234 "h264_dpb.h", | 235 "h264_dpb.h", |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 "//base/test:test_support", | 547 "//base/test:test_support", |
| 547 "//gpu:test_support", | 548 "//gpu:test_support", |
| 548 "//media/gpu/ipc/common", | 549 "//media/gpu/ipc/common", |
| 549 "//media/gpu/ipc/service", | 550 "//media/gpu/ipc/service", |
| 550 "//testing/gmock", | 551 "//testing/gmock", |
| 551 "//testing/gtest", | 552 "//testing/gtest", |
| 552 "//ui/gfx:test_support", | 553 "//ui/gfx:test_support", |
| 553 "//ui/gfx/geometry", | 554 "//ui/gfx/geometry", |
| 554 ] | 555 ] |
| 555 } | 556 } |
| OLD | NEW |