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

Unified Diff: components/tracing/BUILD.gn

Issue 2683913002: Enable startup tracing from command line flags in components/tracing (Closed)
Patch Set: . Created 3 years, 10 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
Index: components/tracing/BUILD.gn
diff --git a/components/tracing/BUILD.gn b/components/tracing/BUILD.gn
index b73c3d6ffa35d394088c49a4c9fd4fbf0c28f63e..991e72165de50b53ffb74971eb3b184f6848a37e 100644
--- a/components/tracing/BUILD.gn
+++ b/components/tracing/BUILD.gn
@@ -50,8 +50,10 @@ component("tracing") {
component("startup_tracing") {
sources = [
- "browser/trace_config_file.cc",
- "browser/trace_config_file.h",
+ "common/startup_command_parser.cc",
+ "common/startup_command_parser.h",
+ "common/trace_config_file.cc",
+ "common/trace_config_file.h",
"common/trace_to_console.cc",
"common/trace_to_console.h",
"common/tracing_switches.cc",
@@ -113,7 +115,7 @@ source_set("unit_tests") {
]
if (!is_android) {
- sources += [ "browser/trace_config_file_unittest.cc" ]
+ sources += [ "common/trace_config_file_unittest.cc" ]
deps += [ ":startup_tracing" ]
}
}

Powered by Google App Engine
This is Rietveld 408576698