OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 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 import("//remoting/remoting_srcs.gni") |
| 6 |
| 7 source_set("codec") { |
| 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_codec_sources, ".", "
//remoting") |
| 9 |
| 10 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 11 |
| 12 deps = [ |
| 13 "//base/third_party/dynamic_annotations", |
| 14 "//media", |
| 15 "//media:shared_memory_support", |
| 16 "//remoting/proto", |
| 17 "//remoting/resources", |
| 18 "//third_party/libvpx", |
| 19 "//third_party/libyuv", |
| 20 "//third_party/opus", |
| 21 "//third_party/webrtc/modules/desktop_capture", |
| 22 ] |
| 23 } |
| 24 |
| 25 source_set("unit_tests") { |
| 26 testonly = true |
| 27 |
| 28 sources = [ |
| 29 "audio_encoder_opus_unittest.cc", |
| 30 "codec_test.cc", |
| 31 "codec_test.h", |
| 32 "video_decoder_vpx_unittest.cc", |
| 33 "video_encoder_helper_unittest.cc", |
| 34 "video_encoder_verbatim_unittest.cc", |
| 35 "video_encoder_vpx_unittest.cc", |
| 36 ] |
| 37 |
| 38 deps = [ |
| 39 ":codec", |
| 40 "//base", |
| 41 "//remoting/proto", |
| 42 "//testing/gtest", |
| 43 "//third_party/webrtc/modules/desktop_capture", |
| 44 ] |
| 45 } |
OLD | NEW |