OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
viettrungluu
2015/10/20 23:54:36
2015
vardhan
2015/10/21 19:29:38
Done.
| |
2 # Use of this source code is governed by a BSD-style license that can be found | |
3 # in the LICENSE file. | |
4 | |
5 import("//mojo/public/tools/bindings/mojom.gni") | |
6 | |
7 group("serialization") { | |
8 deps = [ | |
9 ":serialization_example", | |
10 ] | |
11 } | |
12 | |
13 executable("serialization_example") { | |
14 sources = [ | |
15 "main.cc", | |
16 ] | |
17 | |
18 deps = [ | |
19 ":serialization_mojom_dataonly", | |
20 "//build/config/sanitizers:deps", | |
21 "//mojo/public/cpp/environment:logging_only", | |
22 ] | |
23 } | |
24 | |
25 mojom("serialization_mojom") { | |
26 sources = [ | |
27 "serialization.mojom", | |
28 ] | |
29 } | |
OLD | NEW |