diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-16 17:50:51 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-16 17:50:51 +0000 |
commit | c06b8445783f1c5deef68645f339906da9196676 (patch) | |
tree | 2089f7e93585f2aac3d60ee9cdd5b0a708a628c1 /tools | |
parent | b27a3c77e41850716b2a401e8bfc738bc52b5bdf (diff) | |
download | chromium_src-c06b8445783f1c5deef68645f339906da9196676.zip chromium_src-c06b8445783f1c5deef68645f339906da9196676.tar.gz chromium_src-c06b8445783f1c5deef68645f339906da9196676.tar.bz2 |
Add search_engines and precache components to GN build.
R=viettrungluu@chromium.org
Review URL: https://codereview.chromium.org/393193002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283416 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/json_to_struct/json_to_struct.gni | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/tools/json_to_struct/json_to_struct.gni b/tools/json_to_struct/json_to_struct.gni new file mode 100644 index 0000000..0ef5bd8 --- /dev/null +++ b/tools/json_to_struct/json_to_struct.gni @@ -0,0 +1,62 @@ +# Copyright 2014 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. + +# Converts a .json file to a C++ struct. +# +# Variables: +# +# source (required) +# Single file name of source .json file. +# +# schema_file (required) +# Single file name of the .json file that defines the schema. +# +# namespace (required) +# Namespace name to put result in. +# +# visibility (optional) +# Normal meaning. +template("json_to_struct") { + assert(defined(invoker.source), "source required in $target_name") + assert(defined(invoker.schema_file), "schema_file required in $target_name") + assert(defined(invoker.namespace), "namespace required in $target_name") + + action_name = target_name + "_action" + source_set_name = target_name + + action(action_name) { + visibility = [ ":$source_set_name" ] + script = "//tools/json_to_struct/json_to_struct.py" + + inputs = [ + "//tools/json_to_struct/element_generator.py", + "//tools/json_to_struct/struct_generator.py", + invoker.source, + ] + + out_dir = get_path_info(invoker.source, "gen_dir") + out_name = get_path_info(invoker.source, "name") + outputs = [ + "$out_dir/$out_name.cc", + "$out_dir/$out_name.h", + ] + + args = [ + rebase_path(invoker.source, root_build_dir), + "--destbase=" + rebase_path(out_dir, root_build_dir), + "--namespace=" + invoker.namespace, + "--schema=" + rebase_path(invoker.schema_file, root_build_dir), + ] + } + + source_set(source_set_name) { + if (defined(invoker.visibility)) { + visibility = invoker.visibility + } + + sources = get_target_outputs(":$action_name") + + deps = [ ":$action_name" ] + } +} |