| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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("//remoting/remoting_srcs.gni") | 5 import("//remoting/remoting_srcs.gni") |
| 6 | 6 |
| 7 source_set("codec") { | 7 source_set("codec") { |
| 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_codec_sources, | 8 sources = rebase_path(remoting_srcs_gypi_values.remoting_codec_sources, |
| 9 ".", | 9 ".", |
| 10 "//remoting") | 10 "//remoting") |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "audio_encoder_opus.h", | 33 "audio_encoder_opus.h", |
| 34 "audio_encoder_verbatim.cc", | 34 "audio_encoder_verbatim.cc", |
| 35 "audio_encoder_verbatim.h", | 35 "audio_encoder_verbatim.h", |
| 36 "video_encoder.h", | 36 "video_encoder.h", |
| 37 "video_encoder_helper.cc", | 37 "video_encoder_helper.cc", |
| 38 "video_encoder_helper.h", | 38 "video_encoder_helper.h", |
| 39 "video_encoder_verbatim.cc", | 39 "video_encoder_verbatim.cc", |
| 40 "video_encoder_verbatim.h", | 40 "video_encoder_verbatim.h", |
| 41 "video_encoder_vpx.cc", | 41 "video_encoder_vpx.cc", |
| 42 "video_encoder_vpx.h", | 42 "video_encoder_vpx.h", |
| 43 "webrtc_video_encoder_vpx.cc", |
| 44 "webrtc_video_encoder_vpx.h", |
| 43 ] | 45 ] |
| 44 } | 46 } |
| 45 } | 47 } |
| 46 | 48 |
| 47 source_set("unit_tests") { | 49 source_set("unit_tests") { |
| 48 testonly = true | 50 testonly = true |
| 49 | 51 |
| 50 sources = [ | 52 sources = [ |
| 51 "audio_encoder_opus_unittest.cc", | 53 "audio_encoder_opus_unittest.cc", |
| 52 "codec_test.cc", | 54 "codec_test.cc", |
| 53 "codec_test.h", | 55 "codec_test.h", |
| 54 "video_decoder_vpx_unittest.cc", | 56 "video_decoder_vpx_unittest.cc", |
| 55 "video_encoder_helper_unittest.cc", | 57 "video_encoder_helper_unittest.cc", |
| 56 "video_encoder_verbatim_unittest.cc", | 58 "video_encoder_verbatim_unittest.cc", |
| 57 "video_encoder_vpx_unittest.cc", | 59 "video_encoder_vpx_unittest.cc", |
| 58 ] | 60 ] |
| 59 | 61 |
| 60 deps = [ | 62 deps = [ |
| 61 ":codec", | 63 ":codec", |
| 62 "//base", | 64 "//base", |
| 63 "//remoting/proto", | 65 "//remoting/proto", |
| 64 "//testing/gtest", | 66 "//testing/gtest", |
| 65 "//third_party/webrtc/modules/desktop_capture", | 67 "//third_party/webrtc/modules/desktop_capture", |
| 66 ] | 68 ] |
| 67 } | 69 } |
| OLD | NEW |