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

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

Issue 533743004: Fix Chrome linker errors in GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « net/BUILD.gn ('k') | remoting/client/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 static_library("base") { 5 static_library("base") {
6 sources = [ 6 sources = [
7 "auth_token_util.cc", 7 "auth_token_util.cc",
8 "auth_token_util.h", 8 "auth_token_util.h",
9 "auto_thread.cc", 9 "auto_thread.cc",
10 "auto_thread.h", 10 "auto_thread.h",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 "../codec/video_decoder_vpx.cc", 59 "../codec/video_decoder_vpx.cc",
60 "../codec/video_decoder_vpx.h", 60 "../codec/video_decoder_vpx.h",
61 "../codec/video_encoder.h", 61 "../codec/video_encoder.h",
62 "../codec/video_encoder_verbatim.cc", 62 "../codec/video_encoder_verbatim.cc",
63 "../codec/video_encoder_verbatim.h", 63 "../codec/video_encoder_verbatim.h",
64 "../codec/video_encoder_vpx.cc", 64 "../codec/video_encoder_vpx.cc",
65 "../codec/video_encoder_vpx.h", 65 "../codec/video_encoder_vpx.h",
66 ] 66 ]
67 67
68 configs += [ "//build/config/compiler:wexit_time_destructors" ] 68 configs += [ "//build/config/compiler:wexit_time_destructors" ]
69 # TODO(GYP) Remove when WebRTC is converted.
70 configs += [ "//content:webrtc_stub_config" ]
71 69
72 deps = [ 70 deps = [
73 "//base", 71 "//base",
74 "//base/third_party/dynamic_annotations", 72 "//base/third_party/dynamic_annotations",
75 "//media", 73 "//media",
76 "//media:shared_memory_support", 74 "//media:shared_memory_support",
77 "//net", 75 "//net",
78 "//remoting/proto", 76 "//remoting/proto",
79 "//remoting/resources", 77 "//remoting/resources",
80 #"//third_party/libvpx", TODO(GYP) 78 #"//third_party/libvpx", TODO(GYP)
81 "//third_party/libyuv", 79 "//third_party/libyuv",
82 "//third_party/opus", 80 "//third_party/opus",
83 "//third_party/protobuf:protobuf_lite", 81 "//third_party/protobuf:protobuf_lite",
84 #"//third_party/webrtc/modules/desktop_capture", TODO(GYP) 82 "//third_party/webrtc/modules/desktop_capture",
85 "//ui/base", 83 "//ui/base",
86 "//ui/gfx", 84 "//ui/gfx",
87 "//ui/gfx/geometry", 85 "//ui/gfx/geometry",
88 ] 86 ]
89 87
90 forward_dependent_configs_from = [ 88 forward_dependent_configs_from = [
91 "//base", 89 "//base",
92 "//net", 90 "//net",
93 "//remoting/proto", 91 "//remoting/proto",
94 "//third_party/protobuf:protobuf_lite", 92 "//third_party/protobuf:protobuf_lite",
95 ] 93 ]
94
95 # TODO(GYP) This config should be a direct_dependent_config of
96 # //third_party/webrtc/modules/desktop_capture so we shouldn't have to
97 # include it here. Remove this line when the direct_dependent_config is set.
98 configs += [ "//third_party/webrtc:common_inherited_config" ]
96 } 99 }
97 100
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | remoting/client/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698