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

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

Issue 1882373004: Migrate content/common/gpu/media code to media/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix prefix to content references in content_gpu.gypi Created 4 years, 8 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 source_set("client") { 5 source_set("service") {
6 sources = [ 6 visibility = [
7 "gpu_jpeg_decode_accelerator_host.cc", 7 "//media/*",
8 "gpu_jpeg_decode_accelerator_host.h", 8 "//content/gpu/*",
9 "gpu_video_decode_accelerator_host.cc", 9 "//content/public/gpu/*",
10 "gpu_video_decode_accelerator_host.h",
11 "gpu_video_encode_accelerator_host.cc",
12 "gpu_video_encode_accelerator_host.h",
13 ] 10 ]
14 11
15 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 12 sources = [
13 "gpu_jpeg_decode_accelerator.cc",
14 "gpu_jpeg_decode_accelerator.h",
15 "gpu_video_decode_accelerator.cc",
16 "gpu_video_decode_accelerator.h",
17 "gpu_video_decode_accelerator_factory_impl.cc",
18 "gpu_video_decode_accelerator_factory_impl.h",
19 "gpu_video_encode_accelerator.cc",
20 "gpu_video_encode_accelerator.h",
21 "media_channel.cc",
22 "media_channel.h",
23 "media_service.cc",
24 "media_service.h",
25 ]
16 26
17 deps = [ 27 public_deps = [
18 "//base", 28 "//base",
19 "//gpu/ipc/common", 29 "//gpu/config",
20 "//ipc", 30 "//ipc",
21 "//media", 31 "//media",
22 "//ui/gfx:memory_buffer", 32 "//media/gpu",
23 "//ui/gfx/geometry", 33 ]
24 "//ui/gfx/ipc", 34 deps = [
35 "//gpu/ipc/service",
36 "//media/gpu/ipc/common",
25 ] 37 ]
26 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698