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

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

Issue 2300413002: GN Templates: Move common_config to the template. (Closed)
Patch Set: Add TODOs + tracking bugs. 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
« no previous file with comments | « webrtc/build/webrtc.gni ('k') | webrtc/common_audio/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) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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 rtc_source_set("call") { 11 rtc_source_set("call") {
12 sources = [ 12 sources = [
13 "bitrate_allocator.cc", 13 "bitrate_allocator.cc",
14 "call.cc", 14 "call.cc",
15 "transport_adapter.cc", 15 "transport_adapter.cc",
16 "transport_adapter.h", 16 "transport_adapter.h",
17 ] 17 ]
18 18
19 configs += [ "..:common_config" ]
20 public_configs = [ "..:common_inherited_config" ] 19 public_configs = [ "..:common_inherited_config" ]
21 20
22 if (is_clang) { 21 if (is_clang) {
23 # Suppress warnings from Chrome's Clang plugins. 22 # Suppress warnings from Chrome's Clang plugins.
24 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 23 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
25 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 24 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
26 } 25 }
27 26
28 deps = [ 27 deps = [
29 "..:rtc_event_log", 28 "..:rtc_event_log",
(...skipping 16 matching lines...) Expand all
46 "bitrate_estimator_tests.cc", 45 "bitrate_estimator_tests.cc",
47 "call_unittest.cc", 46 "call_unittest.cc",
48 "packet_injection_tests.cc", 47 "packet_injection_tests.cc",
49 "ringbuffer_unittest.cc", 48 "ringbuffer_unittest.cc",
50 ] 49 ]
51 deps = [ 50 deps = [
52 ":call", 51 ":call",
53 "//testing/gmock", 52 "//testing/gmock",
54 "//testing/gtest", 53 "//testing/gtest",
55 ] 54 ]
56 configs += [ "..:common_config" ]
57 if (is_clang) { 55 if (is_clang) {
58 # Suppress warnings from the Chromium Clang plugin. 56 # Suppress warnings from the Chromium Clang plugin.
59 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 57 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
60 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 58 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
61 } 59 }
62 } 60 }
63 } 61 }
OLDNEW
« no previous file with comments | « webrtc/build/webrtc.gni ('k') | webrtc/common_audio/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698