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/dart/rules.gni") | 5 import("//mojo/public/dart/rules.gni") |
6 import("//mojo/services/mojo_services.gni") | 6 import("//mojo/services/mojo_services.gni") |
7 | 7 |
8 # TODO(johnmccutchan): Automate this. | 8 # TODO(johnmccutchan): Automate this. |
9 # for i in `find lib/|grep mojom.dart|sort`;do echo " \"$i\",";done | 9 # for i in `find lib/|grep mojom.dart|sort`;do echo " \"$i\",";done |
10 bindings_sources = [ | 10 bindings_sources = [ |
(...skipping 18 matching lines...) Expand all Loading... |
29 "lib/mojo/device_info.mojom.dart", | 29 "lib/mojo/device_info.mojom.dart", |
30 "lib/mojo/display.mojom.dart", | 30 "lib/mojo/display.mojom.dart", |
31 "lib/mojo/files/directory.mojom.dart", | 31 "lib/mojo/files/directory.mojom.dart", |
32 "lib/mojo/files/file.mojom.dart", | 32 "lib/mojo/files/file.mojom.dart", |
33 "lib/mojo/files/files.mojom.dart", | 33 "lib/mojo/files/files.mojom.dart", |
34 "lib/mojo/files/ioctl.mojom.dart", | 34 "lib/mojo/files/ioctl.mojom.dart", |
35 "lib/mojo/files/ioctl_terminal.mojom.dart", | 35 "lib/mojo/files/ioctl_terminal.mojom.dart", |
36 "lib/mojo/files/types.mojom.dart", | 36 "lib/mojo/files/types.mojom.dart", |
37 "lib/mojo/geocoder.mojom.dart", | 37 "lib/mojo/geocoder.mojom.dart", |
38 "lib/mojo/geometry.mojom.dart", | 38 "lib/mojo/geometry.mojom.dart", |
| 39 "lib/mojo/gfx/composition/compositor.mojom.dart", |
| 40 "lib/mojo/gfx/composition/hit_tests.mojom.dart", |
| 41 "lib/mojo/gfx/composition/nodes.mojom.dart", |
| 42 "lib/mojo/gfx/composition/renderers.mojom.dart", |
| 43 "lib/mojo/gfx/composition/resources.mojom.dart", |
| 44 "lib/mojo/gfx/composition/scenes.mojom.dart", |
| 45 "lib/mojo/gfx/composition/scene_token.mojom.dart", |
| 46 "lib/mojo/gfx/composition/scheduling.mojom.dart", |
39 "lib/mojo/gpu_capabilities.mojom.dart", | 47 "lib/mojo/gpu_capabilities.mojom.dart", |
40 "lib/mojo/gpu.mojom.dart", | 48 "lib/mojo/gpu.mojom.dart", |
41 "lib/mojo/host_resolver.mojom.dart", | 49 "lib/mojo/host_resolver.mojom.dart", |
42 "lib/mojo/http_connection.mojom.dart", | 50 "lib/mojo/http_connection.mojom.dart", |
43 "lib/mojo/http_message.mojom.dart", | 51 "lib/mojo/http_message.mojom.dart", |
44 "lib/mojo/http_server.mojom.dart", | 52 "lib/mojo/http_server.mojom.dart", |
45 "lib/mojo/input_event_constants.mojom.dart", | 53 "lib/mojo/input_event_constants.mojom.dart", |
46 "lib/mojo/input_events.mojom.dart", | 54 "lib/mojo/input_events.mojom.dart", |
47 "lib/mojo/input_key_codes.mojom.dart", | 55 "lib/mojo/input_key_codes.mojom.dart", |
48 "lib/mojo/location.mojom.dart", | 56 "lib/mojo/location.mojom.dart", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "CHANGELOG.md", | 95 "CHANGELOG.md", |
88 "README.md", | 96 "README.md", |
89 "pubspec.yaml", | 97 "pubspec.yaml", |
90 ] + bindings_sources | 98 ] + bindings_sources |
91 | 99 |
92 deps = [ | 100 deps = [ |
93 "//mojo/public/dart", | 101 "//mojo/public/dart", |
94 "//mojo/services", | 102 "//mojo/services", |
95 ] | 103 ] |
96 } | 104 } |
OLD | NEW |