| 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 23 matching lines...) Expand all Loading... |
| 34 "audio_encoder_verbatim.cc", | 34 "audio_encoder_verbatim.cc", |
| 35 "audio_encoder_verbatim.h", | 35 "audio_encoder_verbatim.h", |
| 36 "video_encoder.cc", | 36 "video_encoder.cc", |
| 37 "video_encoder.h", | 37 "video_encoder.h", |
| 38 "video_encoder_helper.cc", | 38 "video_encoder_helper.cc", |
| 39 "video_encoder_helper.h", | 39 "video_encoder_helper.h", |
| 40 "video_encoder_verbatim.cc", | 40 "video_encoder_verbatim.cc", |
| 41 "video_encoder_verbatim.h", | 41 "video_encoder_verbatim.h", |
| 42 "video_encoder_vpx.cc", | 42 "video_encoder_vpx.cc", |
| 43 "video_encoder_vpx.h", | 43 "video_encoder_vpx.h", |
| 44 "webrtc_video_encoder_vpx.cc", |
| 45 "webrtc_video_encoder_vpx.h", |
| 44 ] | 46 ] |
| 45 } | 47 } |
| 46 } | 48 } |
| 47 | 49 |
| 48 source_set("unit_tests") { | 50 source_set("unit_tests") { |
| 49 testonly = true | 51 testonly = true |
| 50 | 52 |
| 51 sources = [ | 53 sources = [ |
| 52 "audio_encoder_opus_unittest.cc", | 54 "audio_encoder_opus_unittest.cc", |
| 53 "codec_test.cc", | 55 "codec_test.cc", |
| 54 "codec_test.h", | 56 "codec_test.h", |
| 55 "video_decoder_vpx_unittest.cc", | 57 "video_decoder_vpx_unittest.cc", |
| 56 "video_encoder_helper_unittest.cc", | 58 "video_encoder_helper_unittest.cc", |
| 57 "video_encoder_verbatim_unittest.cc", | 59 "video_encoder_verbatim_unittest.cc", |
| 58 "video_encoder_vpx_unittest.cc", | 60 "video_encoder_vpx_unittest.cc", |
| 59 ] | 61 ] |
| 60 | 62 |
| 61 deps = [ | 63 deps = [ |
| 62 ":codec", | 64 ":codec", |
| 63 "//base", | 65 "//base", |
| 64 "//remoting/proto", | 66 "//remoting/proto", |
| 65 "//testing/gtest", | 67 "//testing/gtest", |
| 66 "//third_party/webrtc/modules/desktop_capture", | 68 "//third_party/webrtc/modules/desktop_capture", |
| 67 ] | 69 ] |
| 68 } | 70 } |
| OLD | NEW |