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