Index: examples/serialization/BUILD.gn |
diff --git a/examples/serialization/BUILD.gn b/examples/serialization/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4072759635dc3d00df41dd47c7e20d3bec65fe8e |
--- /dev/null |
+++ b/examples/serialization/BUILD.gn |
@@ -0,0 +1,29 @@ |
+# Copyright 2014 The Chromium Authors. All rights reserved. |
viettrungluu
2015/10/20 23:54:36
2015
vardhan
2015/10/21 19:29:38
Done.
|
+# 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") |
+ |
+group("serialization") { |
+ deps = [ |
+ ":serialization_example", |
+ ] |
+} |
+ |
+executable("serialization_example") { |
+ sources = [ |
+ "main.cc", |
+ ] |
+ |
+ deps = [ |
+ ":serialization_mojom_dataonly", |
+ "//build/config/sanitizers:deps", |
+ "//mojo/public/cpp/environment:logging_only", |
+ ] |
+} |
+ |
+mojom("serialization_mojom") { |
+ sources = [ |
+ "serialization.mojom", |
+ ] |
+} |