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

Side by Side Diff: remoting/codec/BUILD.gn

Issue 1923573006: Implement a dummy host to do capturing and analysis only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve review comments Created 4 years, 7 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") 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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698