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

Unified Diff: base/debug/BUILD.gn

Issue 1540953003: Move base GN subprojects into base. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/BUILD.gn ('k') | base/json/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/debug/BUILD.gn
diff --git a/base/debug/BUILD.gn b/base/debug/BUILD.gn
deleted file mode 100644
index ec9298a789436bbeacfa7d1656e8d9381c9bb20f..0000000000000000000000000000000000000000
--- a/base/debug/BUILD.gn
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright (c) 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import("//build/buildflag_header.gni")
-import("//build/config/compiler/compiler.gni")
-
-source_set("debug") {
- sources = [
- "alias.cc",
- "alias.h",
- "asan_invalid_access.cc",
- "asan_invalid_access.h",
- "crash_logging.cc",
- "crash_logging.h",
- "debugger.cc",
- "debugger.h",
- "debugger_posix.cc",
- "debugger_win.cc",
- "dump_without_crashing.cc",
- "dump_without_crashing.h",
- "gdi_debug_util_win.cc",
- "gdi_debug_util_win.h",
-
- # This file depends on files from the "allocator" target,
- # but this target does not depend on "allocator" (see
- # allocator.gyp for details).
- "leak_annotations.h",
- "leak_tracker.h",
- "proc_maps_linux.cc",
- "proc_maps_linux.h",
- "profiler.cc",
- "profiler.h",
- "stack_trace.cc",
- "stack_trace.h",
- "stack_trace_android.cc",
- "stack_trace_posix.cc",
- "stack_trace_win.cc",
- "task_annotator.cc",
- "task_annotator.h",
- ]
-
- if (is_android) {
- # Android uses some Linux sources, put those back.
- set_sources_assignment_filter([])
- sources += [ "proc_maps_linux.cc" ]
- set_sources_assignment_filter(sources_assignment_filter)
-
- sources -= [ "stack_trace_posix.cc" ]
- }
-
- if (is_nacl) {
- sources -= [
- "crash_logging.cc",
- "crash_logging.h",
- "stack_trace.cc",
- "stack_trace_posix.cc",
- ]
- }
-
- configs += [ "//base:base_implementation" ]
-
- deps = [
- ":debugging_flags",
- "//base:base_static",
- "//base/memory",
- "//base/process",
- ]
-
- if (is_linux) {
- defines = [ "USE_SYMBOLIZE" ]
- deps += [ "//base/third_party/symbolize" ]
- }
-
- allow_circular_includes_from = [
- "//base/memory",
- "//base/process",
- ]
-
- visibility = [ "//base/*" ]
-}
-
-buildflag_header("debugging_flags") {
- header = "debugging_flags.h"
-
- flags = [ "ENABLE_PROFILING=$enable_profiling" ]
-}
« no previous file with comments | « base/BUILD.gn ('k') | base/json/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698