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

Unified Diff: tools/android/heap_profiler/BUILD.gn

Issue 2105873005: Remove tools/android/heap_profiler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove heap_profiler_unittests from all targets Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/android/android_tools.gyp ('k') | tools/android/heap_profiler/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/heap_profiler/BUILD.gn
diff --git a/tools/android/heap_profiler/BUILD.gn b/tools/android/heap_profiler/BUILD.gn
deleted file mode 100644
index 41366e5f932e9944a119009bfa1d98faab9d7a47..0000000000000000000000000000000000000000
--- a/tools/android/heap_profiler/BUILD.gn
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 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("//testing/test.gni")
-
-shared_library("heap_profiler") {
- sources = [
- "heap_profiler_hooks_android.c",
- ]
- public_deps = [
- ":heap_profiler_core",
- ]
-}
-
-source_set("heap_profiler_core") {
- sources = [
- "heap_profiler.c",
- "heap_profiler.h",
- ]
-
- configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ "//build/config/compiler:no_chromium_code" ]
-}
-
-executable("heap_dump") {
- sources = [
- "heap_dump.c",
- ]
-
- deps = [
- ":heap_profiler_core",
- ]
-
- configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ "//build/config/compiler:no_chromium_code" ]
-}
-
-test("heap_profiler_unittests") {
- sources = [
- "heap_profiler_unittest.cc",
- ]
- deps = [
- ":heap_profiler_core",
- "//testing/gtest",
- "//testing/gtest:gtest_main",
- ]
-}
-
-executable("heap_profiler_integrationtest") {
- testonly = true
-
- sources = [
- "heap_profiler_integrationtest.cc",
- ]
- deps = [
- ":heap_profiler",
- "//testing/gtest",
- ]
-
- configs -= [ "//build/config/compiler:chromium_code" ]
- configs += [ "//build/config/compiler:no_chromium_code" ]
-}
« no previous file with comments | « tools/android/android_tools.gyp ('k') | tools/android/heap_profiler/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698