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

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

Issue 2250893003: GN: Add "//build/config/sanitizers:deps" to executable targets (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Revert mb_config.pyl modification. Created 4 years, 4 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') | no next file » | 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 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 configs -= [ "//build/config/clang:find_bad_constructs" ] 174 configs -= [ "//build/config/clang:find_bad_constructs" ]
175 } 175 }
176 } 176 }
177 177
178 if (!is_ios) { 178 if (!is_ios) {
179 executable("voe_auto_test") { 179 executable("voe_auto_test") {
180 testonly = true 180 testonly = true
181 181
182 deps = [ 182 deps = [
183 ":voice_engine", 183 ":voice_engine",
184 "//build/config/sanitizers:deps",
184 "//testing/gmock", 185 "//testing/gmock",
185 "//testing/gtest", 186 "//testing/gtest",
186 "//third_party/gflags", 187 "//third_party/gflags",
187 "//webrtc/:rtc_event_log", 188 "//webrtc/:rtc_event_log",
188 "//webrtc/modules/video_capture", 189 "//webrtc/modules/video_capture",
189 "//webrtc/system_wrappers", 190 "//webrtc/system_wrappers",
190 "//webrtc/system_wrappers/:system_wrappers_default", 191 "//webrtc/system_wrappers/:system_wrappers_default",
191 "//webrtc/test/:channel_transport", 192 "//webrtc/test/:channel_transport",
192 "//webrtc/test/:test_common", 193 "//webrtc/test/:test_common",
193 "//webrtc/test/:test_support", 194 "//webrtc/test/:test_support",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 } 263 }
263 264
264 if (is_clang) { 265 if (is_clang) {
265 # Suppress warnings from Chrome's Clang plugins. 266 # Suppress warnings from Chrome's Clang plugins.
266 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 267 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
267 configs -= [ "//build/config/clang:find_bad_constructs" ] 268 configs -= [ "//build/config/clang:find_bad_constructs" ]
268 } 269 }
269 } 270 }
270 } 271 }
271 } 272 }
OLDNEW
« no previous file with comments | « webrtc/tools/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698