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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
498 "video_accelerator_unittest_helpers.h", | 498 "video_accelerator_unittest_helpers.h", |
499 ] | 499 ] |
500 if (use_x11) { | 500 if (use_x11) { |
501 deps += [ "//ui/gfx/x" ] | 501 deps += [ "//ui/gfx/x" ] |
502 } | 502 } |
503 if (use_ozone) { | 503 if (use_ozone) { |
504 deps += [ "//ui/ozone" ] | 504 deps += [ "//ui/ozone" ] |
505 } | 505 } |
506 } | 506 } |
507 } | 507 } |
OLD | NEW |