OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 | 6 |
7 mojom("interfaces") { | 7 mojom("interfaces") { |
8 sources = [ | 8 sources = [ |
9 "bitmap.mojom", | 9 "bitmap.mojom", |
10 "image_filter.mojom", | 10 "image_filter.mojom", |
11 ] | 11 ] |
| 12 |
| 13 use_new_wrapper_types = false |
12 } | 14 } |
13 | 15 |
14 mojom("mojo") { | 16 mojom("mojo") { |
15 sources = [ | 17 sources = [ |
16 "bitmap_array.mojom", | 18 "bitmap_array.mojom", |
17 ] | 19 ] |
18 public_deps = [ | 20 public_deps = [ |
19 ":interfaces", | 21 ":interfaces", |
20 ] | 22 ] |
| 23 |
| 24 use_new_wrapper_types = false |
21 } | 25 } |
22 | 26 |
23 mojom("test_interfaces") { | 27 mojom("test_interfaces") { |
24 testonly = true | 28 testonly = true |
25 sources = [ | 29 sources = [ |
26 "test/traits_test_service.mojom", | 30 "test/traits_test_service.mojom", |
27 ] | 31 ] |
28 | 32 |
29 public_deps = [ | 33 public_deps = [ |
30 ":interfaces", | 34 ":interfaces", |
31 ":mojo", | 35 ":mojo", |
32 ] | 36 ] |
| 37 |
| 38 use_new_wrapper_types = false |
33 } | 39 } |
OLD | NEW |