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

Unified Diff: components/tracing/BUILD.gn

Issue 1298683002: Convert components/tracing from static lib to component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review comments Created 5 years, 4 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 | « components/tracing.gyp ('k') | components/tracing/child_trace_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/tracing/BUILD.gn
diff --git a/components/tracing/BUILD.gn b/components/tracing/BUILD.gn
index 336f5cb5ea487097480c3aec3cd95d37d22cc98e..b3186d94095df4a402b1a37a49256a97b50fdbd1 100644
--- a/components/tracing/BUILD.gn
+++ b/components/tracing/BUILD.gn
@@ -2,28 +2,34 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("tracing") {
+component("tracing") {
sources = [
"child_memory_dump_manager_delegate_impl.cc",
"child_memory_dump_manager_delegate_impl.h",
"child_trace_message_filter.cc",
"child_trace_message_filter.h",
+ "tracing_export.h",
"tracing_messages.cc",
"tracing_messages.h",
]
+ defines = [ "TRACING_IMPLEMENTATION" ]
+
deps = [
"//base",
"//ipc",
]
}
-source_set("startup_tracing") {
+component("startup_tracing") {
sources = [
"startup_tracing.cc",
"startup_tracing.h",
+ "tracing_export.h",
]
+ defines = [ "TRACING_IMPLEMENTATION" ]
+
deps = [
"//base",
]
« no previous file with comments | « components/tracing.gyp ('k') | components/tracing/child_trace_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698