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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mojo/public/tools/mojom_fetcher/mojom_fetcher.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/tools/mojom_fetcher/build_gn.tmpl
diff --git a/mojo/public/tools/mojom_fetcher/build_gn.tmpl b/mojo/public/tools/mojom_fetcher/build_gn.tmpl
deleted file mode 100644
index f14c950301aeba09a8668cc32331d0e4ceefcdde..0000000000000000000000000000000000000000
--- a/mojo/public/tools/mojom_fetcher/build_gn.tmpl
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-## This file is automatically generated by mojo/public/tools/mojom_fetcher/mojom_gn.py.
-## Manual changes may be overwritten.
-
-import("//build/module_args/mojo.gni")
-import("$mojo_sdk_root/mojo/public/tools/bindings/mojom.gni")
-
-mojom("{{group_name}}") {
- deps = [{% for mojom in mojoms %}
- ":{{mojom.target_name}}",{% endfor %}
- ]
-}
-{% for mojom in mojoms %}
-mojom("{{mojom.target_name}}") {
- sources = [
- "{{mojom.filename}}",
- ]{% if mojom.import_dirs %}
- import_dirs = [{% for dir in mojom.import_dirs %}
- get_path_info("{{dir}}", "abspath"),{% endfor %}
- ]{% endif %}{% if mojom.mojo_sdk_deps %}
- mojo_sdk_deps = [{% for dep in mojom.mojo_sdk_deps %}
- "{{dep}}",{% endfor %}
- ]{% endif %}{% if mojom.deps %}
- deps = [{% for dep in mojom.deps %}
- "{{dep}}",{% endfor %}
- ]{% endif %}
-}{% endfor %}
« 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