Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: media/gpu/BUILD.gn

Issue 2178603002: Rename media::GpuVideoDecodeAcceleratorFactoryImpl to media::GpuVideoDecodeAcceleratorFactory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@explicit_gpu_preferences
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698