Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(657)

Unified Diff: remoting/codec/BUILD.gn

Issue 2273383002: Cleaning up remoting GN build files. Condense the sources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up remoting GN build files. Condense the sources. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/codec/BUILD.gn
diff --git a/remoting/codec/BUILD.gn b/remoting/codec/BUILD.gn
index 1cde72da41e7832f46cc37d7e4479eb30ee460b7..aba66d98f9843577610d3d0bbdb4d37767e20375 100644
--- a/remoting/codec/BUILD.gn
+++ b/remoting/codec/BUILD.gn
@@ -2,12 +2,37 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//remoting/remoting_srcs.gni")
-
source_set("codec") {
- sources = rebase_path(remoting_srcs_gypi_values.remoting_codec_sources,
- ".",
- "//remoting")
+ sources = [
+ "audio_decoder.cc",
+ "audio_decoder.h",
+ "audio_decoder_opus.cc",
+ "audio_decoder_opus.h",
+ "audio_decoder_verbatim.cc",
+ "audio_decoder_verbatim.h",
+ "audio_encoder.h",
+ "audio_encoder_opus.cc",
+ "audio_encoder_opus.h",
+ "audio_encoder_verbatim.cc",
+ "audio_encoder_verbatim.h",
+ "scoped_vpx_codec.cc",
+ "scoped_vpx_codec.h",
+ "video_decoder.h",
+ "video_decoder_verbatim.cc",
+ "video_decoder_verbatim.h",
+ "video_decoder_vpx.cc",
+ "video_decoder_vpx.h",
+ "video_encoder.cc",
+ "video_encoder.h",
+ "video_encoder_helper.cc",
+ "video_encoder_helper.h",
+ "video_encoder_verbatim.cc",
+ "video_encoder_verbatim.h",
+ "video_encoder_vpx.cc",
+ "video_encoder_vpx.h",
+ "webrtc_video_encoder_vpx.cc",
+ "webrtc_video_encoder_vpx.h",
+ ]
configs += [ "//build/config/compiler:wexit_time_destructors" ]

Powered by Google App Engine
This is Rietveld 408576698