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

Side by Side Diff: webrtc/webrtc.gni

Issue 2930603002: Replace sanitizers:deps with exe_and_shlib_deps (webrtc) (Closed)
Patch Set: Created 3 years, 6 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/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 [ 292 [
293 "deps", 293 "deps",
294 "configs", 294 "configs",
295 "public_configs", 295 "public_configs",
296 "suppressed_configs", 296 "suppressed_configs",
297 ]) 297 ])
298 configs += invoker.configs 298 configs += invoker.configs
299 configs -= rtc_remove_configs 299 configs -= rtc_remove_configs
300 configs -= invoker.suppressed_configs 300 configs -= invoker.suppressed_configs
301 deps = [ 301 deps = [
302 "//build/config/sanitizers:deps", 302 "//build/config:exe_and_shlib_deps",
303 ] 303 ]
304 deps += invoker.deps 304 deps += invoker.deps
305 public_configs = [ rtc_common_inherited_config ] 305 public_configs = [ rtc_common_inherited_config ]
306 if (defined(invoker.public_configs)) { 306 if (defined(invoker.public_configs)) {
307 public_configs += invoker.public_configs 307 public_configs += invoker.public_configs
308 } 308 }
309 } 309 }
310 } 310 }
311 311
312 template("rtc_static_library") { 312 template("rtc_static_library") {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 configs += invoker.configs 365 configs += invoker.configs
366 configs -= rtc_remove_configs 366 configs -= rtc_remove_configs
367 configs -= invoker.suppressed_configs 367 configs -= invoker.suppressed_configs
368 public_configs = [ rtc_common_inherited_config ] 368 public_configs = [ rtc_common_inherited_config ]
369 if (defined(invoker.public_configs)) { 369 if (defined(invoker.public_configs)) {
370 public_configs += invoker.public_configs 370 public_configs += invoker.public_configs
371 } 371 }
372 } 372 }
373 } 373 }
374 } 374 }
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