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

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

Issue 2735083002: [Mojo Video Capture] Add test coverage for accelerated jpeg decoding (Closed)
Patch Set: Incorporated emircan@'s suggestions Created 3 years, 9 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 if (is_mac) { 122 if (is_mac) {
123 # On Mac, content/common reaches into here to do some pre-sandbox 123 # On Mac, content/common reaches into here to do some pre-sandbox
124 # initialization. 124 # initialization.
125 visibility += [ "//content/common" ] 125 visibility += [ "//content/common" ]
126 } 126 }
127 127
128 defines = [ "MEDIA_GPU_IMPLEMENTATION" ] 128 defines = [ "MEDIA_GPU_IMPLEMENTATION" ]
129 129
130 sources = [ 130 sources = [
131 "fake_jpeg_decode_accelerator.cc",
132 "fake_jpeg_decode_accelerator.h",
sandersd (OOO until July 31) 2017/03/14 23:02:34 Are we sure we want to always build this? It seems
chfremer 2017/03/15 17:31:05 I assumed that this would be okay, considering tha
sandersd (OOO until July 31) 2017/03/15 17:38:12 While I don't think either should be in a release
131 "fake_video_decode_accelerator.cc", 133 "fake_video_decode_accelerator.cc",
132 "fake_video_decode_accelerator.h", 134 "fake_video_decode_accelerator.h",
133 "gpu_video_accelerator_util.cc", 135 "gpu_video_accelerator_util.cc",
134 "gpu_video_accelerator_util.h", 136 "gpu_video_accelerator_util.h",
135 "gpu_video_decode_accelerator_factory.cc", 137 "gpu_video_decode_accelerator_factory.cc",
136 "gpu_video_decode_accelerator_factory.h", 138 "gpu_video_decode_accelerator_factory.h",
137 "gpu_video_decode_accelerator_helpers.h", 139 "gpu_video_decode_accelerator_helpers.h",
138 "shared_memory_region.cc", 140 "shared_memory_region.cc",
139 "shared_memory_region.h", 141 "shared_memory_region.h",
140 ] 142 ]
141 143
142 public_deps = [ 144 public_deps = [
143 "//base", 145 "//base",
144 "//gpu", 146 "//gpu",
145 "//media", 147 "//media",
146 "//ui/gfx/geometry", 148 "//ui/gfx/geometry",
147 ] 149 ]
148 deps = [ 150 deps = [
151 "//third_party/libyuv:libyuv",
149 "//ui/base", 152 "//ui/base",
150 "//ui/display/types", 153 "//ui/display/types",
151 "//ui/gl", 154 "//ui/gl",
152 "//ui/platform_window", 155 "//ui/platform_window",
153 ] 156 ]
154 libs = [] 157 libs = []
155 ldflags = [] 158 ldflags = []
156 159
157 configs += [ ":gpu_config" ] 160 configs += [ ":gpu_config" ]
158 161
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 "//base/test:test_support", 531 "//base/test:test_support",
529 "//gpu:test_support", 532 "//gpu:test_support",
530 "//media/gpu/ipc/common", 533 "//media/gpu/ipc/common",
531 "//media/gpu/ipc/service", 534 "//media/gpu/ipc/service",
532 "//testing/gmock", 535 "//testing/gmock",
533 "//testing/gtest", 536 "//testing/gtest",
534 "//ui/gfx:test_support", 537 "//ui/gfx:test_support",
535 "//ui/gfx/geometry", 538 "//ui/gfx/geometry",
536 ] 539 ]
537 } 540 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698