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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 visibility += [ "//content/common" ] | 155 visibility += [ "//content/common" ] |
156 } | 156 } |
157 | 157 |
158 defines = [ "MEDIA_GPU_IMPLEMENTATION" ] | 158 defines = [ "MEDIA_GPU_IMPLEMENTATION" ] |
159 | 159 |
160 sources = [ | 160 sources = [ |
161 "fake_video_decode_accelerator.cc", | 161 "fake_video_decode_accelerator.cc", |
162 "fake_video_decode_accelerator.h", | 162 "fake_video_decode_accelerator.h", |
163 "gpu_video_accelerator_util.cc", | 163 "gpu_video_accelerator_util.cc", |
164 "gpu_video_accelerator_util.h", | 164 "gpu_video_accelerator_util.h", |
165 "gpu_video_decode_accelerator_factory_impl.cc", | 165 "gpu_video_decode_accelerator_factory.cc", |
166 "gpu_video_decode_accelerator_factory_impl.h", | 166 "gpu_video_decode_accelerator_factory.h", |
167 "gpu_video_decode_accelerator_helpers.h", | 167 "gpu_video_decode_accelerator_helpers.h", |
168 "shared_memory_region.cc", | 168 "shared_memory_region.cc", |
169 "shared_memory_region.h", | 169 "shared_memory_region.h", |
170 ] | 170 ] |
171 | 171 |
172 public_deps = [ | 172 public_deps = [ |
173 "//base", | 173 "//base", |
174 "//gpu", | 174 "//gpu", |
175 "//media", | 175 "//media", |
176 "//ui/gfx/geometry", | 176 "//ui/gfx/geometry", |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 "video_encode_accelerator_unittest.cc", | 459 "video_encode_accelerator_unittest.cc", |
460 ] | 460 ] |
461 if (use_x11) { | 461 if (use_x11) { |
462 deps += [ "//ui/gfx/x" ] | 462 deps += [ "//ui/gfx/x" ] |
463 } | 463 } |
464 if (use_ozone) { | 464 if (use_ozone) { |
465 deps += [ "//ui/ozone" ] | 465 deps += [ "//ui/ozone" ] |
466 } | 466 } |
467 } | 467 } |
468 } | 468 } |
OLD | NEW |