| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("service") { |
| 6 visibility = [ |
| 7 "//media/*", |
| 8 "//content/gpu/*", |
| 9 "//content/public/gpu/*", |
| 10 ] |
| 11 |
| 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_encode_accelerator.cc", |
| 18 "gpu_video_encode_accelerator.h", |
| 19 "media_channel.cc", |
| 20 "media_channel.h", |
| 21 "media_service.cc", |
| 22 "media_service.h", |
| 23 ] |
| 24 |
| 25 include_dirs = [ "//third_party/mesa/src/include" ] |
| 26 |
| 27 public_deps = [ |
| 28 "//base", |
| 29 "//gpu/config", |
| 30 "//ipc", |
| 31 "//media", |
| 32 "//media/gpu", |
| 33 ] |
| 34 deps = [ |
| 35 "//gpu/ipc/service", |
| 36 "//media/gpu/ipc/common", |
| 37 "//third_party/mesa:mesa_headers", |
| 38 ] |
| 39 |
| 40 if (is_chromeos && current_cpu != "arm") { |
| 41 configs += [ "//third_party/libva:libva_config" ] |
| 42 } |
| 43 |
| 44 if (is_win) { |
| 45 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 46 } |
| 47 } |
| OLD | NEW |