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

Side by Side Diff: webrtc/p2p/BUILD.gn

Issue 2441383002: GN: New conventions, default target and refactorings (Closed)
Patch Set: Restored root BUILD.gn for submit. Created 4 years, 1 month 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 | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/sdk/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 (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 10
11 group("p2p") { 11 group("p2p") {
12 public_deps = [ 12 public_deps = [
13 ":libstunprober",
13 ":rtc_p2p", 14 ":rtc_p2p",
14 ] 15 ]
16 if (!build_with_chromium) {
17 # TODO(kjellander): Move this to examples or tools.
18 public_deps += [ ":stun_prober" ]
19 }
15 } 20 }
16 21
17 config("rtc_p2p_inherited_config") { 22 config("rtc_p2p_inherited_config") {
18 defines = [ "FEATURE_ENABLE_VOICEMAIL" ] 23 defines = [ "FEATURE_ENABLE_VOICEMAIL" ]
19 } 24 }
20 25
21 rtc_static_library("rtc_p2p") { 26 rtc_static_library("rtc_p2p") {
22 sources = [ 27 sources = [
23 "base/asyncstuntcpsocket.cc", 28 "base/asyncstuntcpsocket.cc",
24 "base/asyncstuntcpsocket.h", 29 "base/asyncstuntcpsocket.h",
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 173 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
169 } 174 }
170 175
171 deps = [ 176 deps = [
172 ":libstunprober", 177 ":libstunprober",
173 ":rtc_p2p", 178 ":rtc_p2p",
174 "../system_wrappers:field_trial_default", 179 "../system_wrappers:field_trial_default",
175 ] 180 ]
176 } 181 }
177 } 182 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/sdk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698