Index: mojo/common/BUILD.gn |
diff --git a/mojo/common/BUILD.gn b/mojo/common/BUILD.gn |
index 4707b27103105a63872009c507a0fece4f2dc861..50b8b27ceffd5649c56eca495fb3603d1f51b573 100644 |
--- a/mojo/common/BUILD.gn |
+++ b/mojo/common/BUILD.gn |
@@ -2,6 +2,8 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
+import("//mojo/public/tools/bindings/mojom.gni") |
+ |
# GYP version: mojo/mojo_base.gyp:mojo_common_lib |
component("common") { |
output_name = "mojo_common_lib" |
@@ -57,3 +59,20 @@ test("mojo_common_unittests") { |
"//url", |
] |
} |
+ |
+source_set("tracing_impl") { |
+ sources = [ |
+ "tracing_impl.cc", |
+ "tracing_impl.h", |
+ ] |
+ |
+ deps = [ |
+ ":tracing_bindings", |
+ "//base", |
+ "//mojo/public/cpp/bindings", |
+ ] |
+} |
+ |
+mojom("tracing_bindings") { |
+ sources = [ "tracing.mojom" ] |
+} |