Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Side by Side Diff: mojo/public/tools/mojom_fetcher/build_gn.tmpl

Issue 1709333002: Remove mojom_fetcher. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | mojo/public/tools/mojom_fetcher/mojom_fetcher.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 ## This file is automatically generated by mojo/public/tools/mojom_fetcher/mojom _gn.py.
6 ## Manual changes may be overwritten.
7
8 import("//build/module_args/mojo.gni")
9 import("$mojo_sdk_root/mojo/public/tools/bindings/mojom.gni")
10
11 mojom("{{group_name}}") {
12 deps = [{% for mojom in mojoms %}
13 ":{{mojom.target_name}}",{% endfor %}
14 ]
15 }
16 {% for mojom in mojoms %}
17 mojom("{{mojom.target_name}}") {
18 sources = [
19 "{{mojom.filename}}",
20 ]{% if mojom.import_dirs %}
21 import_dirs = [{% for dir in mojom.import_dirs %}
22 get_path_info("{{dir}}", "abspath"),{% endfor %}
23 ]{% endif %}{% if mojom.mojo_sdk_deps %}
24 mojo_sdk_deps = [{% for dep in mojom.mojo_sdk_deps %}
25 "{{dep}}",{% endfor %}
26 ]{% endif %}{% if mojom.deps %}
27 deps = [{% for dep in mojom.deps %}
28 "{{dep}}",{% endfor %}
29 ]{% endif %}
30 }{% endfor %}
OLDNEW
« no previous file with comments | « no previous file | mojo/public/tools/mojom_fetcher/mojom_fetcher.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698