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

Side by Side Diff: webrtc/video/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/tools/BUILD.gn ('k') | webrtc/voice_engine/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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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
(...skipping 30 matching lines...) Expand all
41 "video_send_stream.cc", 41 "video_send_stream.cc",
42 "video_send_stream.h", 42 "video_send_stream.h",
43 "video_stream_decoder.cc", 43 "video_stream_decoder.cc",
44 "video_stream_decoder.h", 44 "video_stream_decoder.h",
45 "vie_encoder.cc", 45 "vie_encoder.cc",
46 "vie_encoder.h", 46 "vie_encoder.h",
47 "vie_remb.cc", 47 "vie_remb.cc",
48 "vie_remb.h", 48 "vie_remb.h",
49 ] 49 ]
50 50
51 configs += [ "..:common_config" ]
52 public_configs = [ "..:common_inherited_config" ] 51 public_configs = [ "..:common_inherited_config" ]
53 52
54 if (is_clang) { 53 if (is_clang) {
55 # Suppress warnings from Chrome's Clang plugins. 54 # Suppress warnings from Chrome's Clang plugins.
56 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 55 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
57 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 56 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
58 } 57 }
59 58
60 deps = [ 59 deps = [
61 "..:rtc_event_log", 60 "..:rtc_event_log",
(...skipping 29 matching lines...) Expand all
91 "send_delay_stats_unittest.cc", 90 "send_delay_stats_unittest.cc",
92 "send_statistics_proxy_unittest.cc", 91 "send_statistics_proxy_unittest.cc",
93 "stats_counter_unittest.cc", 92 "stats_counter_unittest.cc",
94 "stream_synchronization_unittest.cc", 93 "stream_synchronization_unittest.cc",
95 "video_decoder_unittest.cc", 94 "video_decoder_unittest.cc",
96 "video_encoder_unittest.cc", 95 "video_encoder_unittest.cc",
97 "video_send_stream_tests.cc", 96 "video_send_stream_tests.cc",
98 "vie_encoder_unittest.cc", 97 "vie_encoder_unittest.cc",
99 "vie_remb_unittest.cc", 98 "vie_remb_unittest.cc",
100 ] 99 ]
101 configs += [ "..:common_config" ]
102 deps = [ 100 deps = [
103 ":video", 101 ":video",
104 "//testing/gmock", 102 "//testing/gmock",
105 "//testing/gtest", 103 "//testing/gtest",
106 ] 104 ]
107 if (is_clang) { 105 if (is_clang) {
108 # Suppress warnings from the Chromium Clang plugin. 106 # Suppress warnings from the Chromium Clang plugin.
109 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 107 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
110 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 108 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
111 } 109 }
112 } 110 }
113 } 111 }
OLDNEW
« no previous file with comments | « webrtc/tools/BUILD.gn ('k') | webrtc/voice_engine/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698