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

Side by Side Diff: webrtc/webrtc.gni

Issue 2897523002: Replace sanitizers:deps with exe_and_shlib_deps (webrtc) (Closed)
Patch Set: / => : Created 3 years, 7 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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 [ 295 [
296 "deps", 296 "deps",
297 "configs", 297 "configs",
298 "public_configs", 298 "public_configs",
299 "suppressed_configs", 299 "suppressed_configs",
300 ]) 300 ])
301 configs += invoker.configs 301 configs += invoker.configs
302 configs -= rtc_remove_configs 302 configs -= rtc_remove_configs
303 configs -= invoker.suppressed_configs 303 configs -= invoker.suppressed_configs
304 deps = [ 304 deps = [
305 "//build/config/sanitizers:deps", 305 "//build/config:exe_and_shlib_deps",
306 ] 306 ]
307 deps += invoker.deps 307 deps += invoker.deps
308 public_configs = [ rtc_common_inherited_config ] 308 public_configs = [ rtc_common_inherited_config ]
309 if (defined(invoker.public_configs)) { 309 if (defined(invoker.public_configs)) {
310 public_configs += invoker.public_configs 310 public_configs += invoker.public_configs
311 } 311 }
312 } 312 }
313 } 313 }
314 314
315 template("rtc_static_library") { 315 template("rtc_static_library") {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 configs += invoker.configs 368 configs += invoker.configs
369 configs -= rtc_remove_configs 369 configs -= rtc_remove_configs
370 configs -= invoker.suppressed_configs 370 configs -= invoker.suppressed_configs
371 public_configs = [ rtc_common_inherited_config ] 371 public_configs = [ rtc_common_inherited_config ]
372 if (defined(invoker.public_configs)) { 372 if (defined(invoker.public_configs)) {
373 public_configs += invoker.public_configs 373 public_configs += invoker.public_configs
374 } 374 }
375 } 375 }
376 } 376 }
377 } 377 }
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