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

Side by Side Diff: mojom/mojom_parser/BUILD.gn

Issue 1908273003: Mojom frontend: An algorithm for detecting ill-founded nodes in a graph. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
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/go/rules.gni") 5 import("//mojo/go/rules.gni")
6 6
7 # The purpose of this target is to ensure the parser remains buildable on all 7 # The purpose of this target is to ensure the parser remains buildable on all
8 # platforms. The output files are not consumed by anything. The parser is built 8 # platforms. The output files are not consumed by anything. The parser is built
9 # and uploaded to GCS by manually running build_mojom_tool.py. 9 # and uploaded to GCS by manually running build_mojom_tool.py.
10 action("mojom_tool") { 10 action("mojom_tool") {
(...skipping 12 matching lines...) Expand all
23 "mojom/mojom_descriptor.go", 23 "mojom/mojom_descriptor.go",
24 "mojom/scopes.go", 24 "mojom/scopes.go",
25 "mojom/types.go", 25 "mojom/types.go",
26 "mojom/user_defined_types.go", 26 "mojom/user_defined_types.go",
27 "mojom/utils.go", 27 "mojom/utils.go",
28 "parser/parse_driver.go", 28 "parser/parse_driver.go",
29 "parser/parser.go", 29 "parser/parser.go",
30 "parser/parsing.go", 30 "parser/parsing.go",
31 "serialization/serialization.go", 31 "serialization/serialization.go",
32 "utils/sort_utils.go", 32 "utils/sort_utils.go",
33 "utils/wellfounded_graphs.go",
33 ] 34 ]
34 35
35 outputs = [ 36 outputs = [
36 "$target_out_dir/mojom_linux_amd64", 37 "$target_out_dir/mojom_linux_amd64",
37 "$target_out_dir/mojom_darwin_amd64", 38 "$target_out_dir/mojom_darwin_amd64",
38 ] 39 ]
39 40
40 args = [ 41 args = [
41 "--src-root", 42 "--src-root",
42 rebase_path("//", root_build_dir), 43 rebase_path("//", root_build_dir),
43 "--out-dir", 44 "--out-dir",
44 rebase_path(target_out_dir, root_build_dir), 45 rebase_path(target_out_dir, root_build_dir),
45 "--quiet", 46 "--quiet",
46 ] 47 ]
47 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698