| 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 15 matching lines...) Expand all Loading... |
| 26 deps -= [ | 26 deps -= [ |
| 27 "//media", | 27 "//media", |
| 28 "//media:shared_memory_support", | 28 "//media:shared_memory_support", |
| 29 ] | 29 ] |
| 30 sources -= [ | 30 sources -= [ |
| 31 "audio_encoder.h", | 31 "audio_encoder.h", |
| 32 "audio_encoder_opus.cc", | 32 "audio_encoder_opus.cc", |
| 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.cc", |
| 36 "video_encoder.h", | 37 "video_encoder.h", |
| 37 "video_encoder_helper.cc", | 38 "video_encoder_helper.cc", |
| 38 "video_encoder_helper.h", | 39 "video_encoder_helper.h", |
| 39 "video_encoder_verbatim.cc", | 40 "video_encoder_verbatim.cc", |
| 40 "video_encoder_verbatim.h", | 41 "video_encoder_verbatim.h", |
| 41 "video_encoder_vpx.cc", | 42 "video_encoder_vpx.cc", |
| 42 "video_encoder_vpx.h", | 43 "video_encoder_vpx.h", |
| 43 ] | 44 ] |
| 44 } | 45 } |
| 45 } | 46 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 58 ] | 59 ] |
| 59 | 60 |
| 60 deps = [ | 61 deps = [ |
| 61 ":codec", | 62 ":codec", |
| 62 "//base", | 63 "//base", |
| 63 "//remoting/proto", | 64 "//remoting/proto", |
| 64 "//testing/gtest", | 65 "//testing/gtest", |
| 65 "//third_party/webrtc/modules/desktop_capture", | 66 "//third_party/webrtc/modules/desktop_capture", |
| 66 ] | 67 ] |
| 67 } | 68 } |
| OLD | NEW |