| OLD | NEW |
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 | 7 |
| 8 source_set("debug") { | 8 source_set("debug") { |
| 9 sources = [ | 9 sources = [ |
| 10 "alias.cc", | 10 "alias.cc", |
| 11 "alias.h", | 11 "alias.h", |
| 12 "asan_invalid_access.cc", | 12 "asan_invalid_access.cc", |
| 13 "asan_invalid_access.h", | 13 "asan_invalid_access.h", |
| 14 "close_handle_hook_win.cc", | |
| 15 "close_handle_hook_win.h", | |
| 16 "crash_logging.cc", | 14 "crash_logging.cc", |
| 17 "crash_logging.h", | 15 "crash_logging.h", |
| 18 "debugger.cc", | 16 "debugger.cc", |
| 19 "debugger.h", | 17 "debugger.h", |
| 20 "debugger_posix.cc", | 18 "debugger_posix.cc", |
| 21 "debugger_win.cc", | 19 "debugger_win.cc", |
| 22 "dump_without_crashing.cc", | 20 "dump_without_crashing.cc", |
| 23 "dump_without_crashing.h", | 21 "dump_without_crashing.h", |
| 24 "gdi_debug_util_win.cc", | 22 "gdi_debug_util_win.cc", |
| 25 "gdi_debug_util_win.h", | 23 "gdi_debug_util_win.h", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ] | 78 ] |
| 81 | 79 |
| 82 visibility = [ "//base/*" ] | 80 visibility = [ "//base/*" ] |
| 83 } | 81 } |
| 84 | 82 |
| 85 buildflag_header("debugging_flags") { | 83 buildflag_header("debugging_flags") { |
| 86 header = "debugging_flags.h" | 84 header = "debugging_flags.h" |
| 87 | 85 |
| 88 flags = [ "ENABLE_PROFILING=$enable_profiling" ] | 86 flags = [ "ENABLE_PROFILING=$enable_profiling" ] |
| 89 } | 87 } |
| OLD | NEW |