Fix content_browsertests on Linux GN build.
[chromium-blink-merge.git] / tools / json_to_struct / json_to_struct.gni
blob814392258b5beb7675f6a4e6271ce8bac320bff7
1 # Copyright 2014 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.
5 # Converts a .json file to a C++ struct.
7 # Variables:
9 #   source (required)
10 #       Single file name of source .json file.
12 #   schema_file (required)
13 #       Single file name of the .json file that defines the schema.
15 #   namespace (required)
16 #       Namespace name to put result in.
18 #   visibility (optional)
19 #       Normal meaning.
20 template("json_to_struct") {
21   assert(defined(invoker.source), "source required in $target_name")
22   assert(defined(invoker.schema_file), "schema_file required in $target_name")
23   assert(defined(invoker.namespace), "namespace required in $target_name")
25   action_name = target_name + "_action"
26   source_set_name = target_name
28   action(action_name) {
29     visibility = [ ":$source_set_name" ]
30     script = "//tools/json_to_struct/json_to_struct.py"
32     inputs = [
33       "//tools/json_to_struct/element_generator.py",
34       "//tools/json_to_struct/struct_generator.py",
35       invoker.source,
36     ]
38     out_dir = get_path_info(invoker.source, "gen_dir")
39     out_name = get_path_info(invoker.source, "name")
40     outputs = [
41       "$out_dir/$out_name.cc",
42       "$out_dir/$out_name.h",
43     ]
45     args = [
46       rebase_path(invoker.source, root_build_dir),
47       "--destbase=" + rebase_path(out_dir, root_build_dir),
48       "--namespace=" + invoker.namespace,
49       "--schema=" + rebase_path(invoker.schema_file, root_build_dir),
50     ]
51   }
53   source_set(source_set_name) {
54     if (defined(invoker.visibility)) {
55       visibility = invoker.visibility
56     }
58     sources = get_target_outputs(":$action_name")
60     deps = [
61       ":$action_name",
62     ]
63   }