| Index: chrome/common/profiling/BUILD.gn
|
| diff --git a/chrome/profiling/BUILD.gn b/chrome/common/profiling/BUILD.gn
|
| similarity index 50%
|
| copy from chrome/profiling/BUILD.gn
|
| copy to chrome/common/profiling/BUILD.gn
|
| index 097b41ef7330603c6e59ec81fa304db1bc042f43..ff59ef5abeafcf59b93ca9e233155b783a9ab152 100644
|
| --- a/chrome/profiling/BUILD.gn
|
| +++ b/chrome/common/profiling/BUILD.gn
|
| @@ -7,24 +7,21 @@ import("//chrome/common/features.gni")
|
| if (enable_oop_heap_profiling) {
|
| static_library("profiling") {
|
| sources = [
|
| - "profiling_globals.cc",
|
| - "profiling_globals.h",
|
| - "profiling_main.cc",
|
| - "profiling_main.h",
|
| + "memlog_sender_pipe.h",
|
| + "memlog_sender_pipe_win.cc",
|
| + "memlog_sender_pipe_win.h",
|
| + "memlog_stream.cc",
|
| + "memlog_stream.h",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| - "//chrome/common",
|
| - "//mojo/edk/system",
|
| + "//base:debugging_flags",
|
| + "//chrome/common:constants",
|
| ]
|
| }
|
| } else {
|
| - # Dummy target so this can be unconditionally depended on and header checking
|
| - # will work.
|
| - source_set("profiling") {
|
| - sources = [
|
| - "profiling_main.h",
|
| - ]
|
| + # Dummy group so this target can be unconditionally depended on.
|
| + group("profiling") {
|
| }
|
| }
|
|
|