| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/allocator.gni") | 5 import("//build/config/allocator.gni") |
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
| 7 import("//build/config/chromecast_build.gni") | 7 import("//build/config/chromecast_build.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/dcheck_always_on.gni") | 9 import("//build/config/dcheck_always_on.gni") |
| 10 import("//build/config/features.gni") | 10 import("//build/config/features.gni") |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 public_deps = [] | 269 public_deps = [] |
| 270 if (using_sanitizer) { | 270 if (using_sanitizer) { |
| 271 public_deps += [ "//build/config/sanitizers:deps" ] | 271 public_deps += [ "//build/config/sanitizers:deps" ] |
| 272 } | 272 } |
| 273 if (use_custom_libcxx) { | 273 if (use_custom_libcxx) { |
| 274 public_deps += [ "//buildtools/third_party/libc++:libcxx_proxy" ] | 274 public_deps += [ "//buildtools/third_party/libc++:libcxx_proxy" ] |
| 275 } | 275 } |
| 276 if (use_afl) { | 276 if (use_afl) { |
| 277 public_deps += [ "//third_party/afl" ] | 277 public_deps += [ "//third_party/afl" ] |
| 278 } | 278 } |
| 279 public_deps += [ "//tools/cygprofile" ] |
| 279 } | 280 } |
| 280 | 281 |
| 281 # Executable configs ----------------------------------------------------------- | 282 # Executable configs ----------------------------------------------------------- |
| 282 | 283 |
| 283 # Windows linker setup for EXEs and DLLs. | 284 # Windows linker setup for EXEs and DLLs. |
| 284 if (is_win) { | 285 if (is_win) { |
| 285 _windows_linker_configs = [ | 286 _windows_linker_configs = [ |
| 286 "//build/config/win:sdk_link", | 287 "//build/config/win:sdk_link", |
| 287 "//build/config/win:common_linker_setup", | 288 "//build/config/win:common_linker_setup", |
| 288 ] | 289 ] |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 # variant for each language used in the target). | 376 # variant for each language used in the target). |
| 376 precompiled_source = "//build/precompile.cc" | 377 precompiled_source = "//build/precompile.cc" |
| 377 | 378 |
| 378 # Force include the header. | 379 # Force include the header. |
| 379 cflags = [ "/FI$precompiled_header" ] | 380 cflags = [ "/FI$precompiled_header" ] |
| 380 } else if (is_mac) { | 381 } else if (is_mac) { |
| 381 precompiled_source = "//build/precompile.h" | 382 precompiled_source = "//build/precompile.h" |
| 382 } | 383 } |
| 383 } | 384 } |
| 384 } | 385 } |
| OLD | NEW |