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

Side by Side 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, 3 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 unified diff | Download patch
OLDNEW
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")
6
7 source_set("codec") { 5 source_set("codec") {
8 sources = rebase_path(remoting_srcs_gypi_values.remoting_codec_sources, 6 sources = [
9 ".", 7 "audio_decoder.cc",
10 "//remoting") 8 "audio_decoder.h",
9 "audio_decoder_opus.cc",
10 "audio_decoder_opus.h",
11 "audio_decoder_verbatim.cc",
12 "audio_decoder_verbatim.h",
13 "audio_encoder.h",
14 "audio_encoder_opus.cc",
15 "audio_encoder_opus.h",
16 "audio_encoder_verbatim.cc",
17 "audio_encoder_verbatim.h",
18 "scoped_vpx_codec.cc",
19 "scoped_vpx_codec.h",
20 "video_decoder.h",
21 "video_decoder_verbatim.cc",
22 "video_decoder_verbatim.h",
23 "video_decoder_vpx.cc",
24 "video_decoder_vpx.h",
25 "video_encoder.cc",
26 "video_encoder.h",
27 "video_encoder_helper.cc",
28 "video_encoder_helper.h",
29 "video_encoder_verbatim.cc",
30 "video_encoder_verbatim.h",
31 "video_encoder_vpx.cc",
32 "video_encoder_vpx.h",
33 "webrtc_video_encoder_vpx.cc",
34 "webrtc_video_encoder_vpx.h",
35 ]
11 36
12 configs += [ "//build/config/compiler:wexit_time_destructors" ] 37 configs += [ "//build/config/compiler:wexit_time_destructors" ]
13 38
14 deps = [ 39 deps = [
15 "//base/third_party/dynamic_annotations", 40 "//base/third_party/dynamic_annotations",
16 "//media", 41 "//media",
17 "//media:shared_memory_support", 42 "//media:shared_memory_support",
18 "//remoting/proto", 43 "//remoting/proto",
19 "//third_party/libvpx", 44 "//third_party/libvpx",
20 "//third_party/libyuv", 45 "//third_party/libyuv",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 ] 86 ]
62 87
63 deps = [ 88 deps = [
64 ":codec", 89 ":codec",
65 "//base", 90 "//base",
66 "//remoting/proto", 91 "//remoting/proto",
67 "//testing/gtest", 92 "//testing/gtest",
68 "//third_party/webrtc/modules/desktop_capture", 93 "//third_party/webrtc/modules/desktop_capture",
69 ] 94 ]
70 } 95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698