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

Side by Side Diff: build/json_to_struct.gypi

Issue 1209743002: Generate a static struct from fieldtrial_testing_config (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codegen_nested_structs
Patch Set: add +x file permission Created 5 years, 5 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 | chrome/chrome_common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 # When including this gypi, the following variables must be set: 7 # When including this gypi, the following variables must be set:
8 # schema_file: a json file that comprise the structure model. 8 # schema_file: a json file that comprise the structure model.
9 # namespace: the C++ namespace that all generated files go under 9 # namespace: the C++ namespace that all generated files go under
10 # cc_dir: path to generated files 10 # cc_dir: path to generated files
11 # Functions and namespaces can be excluded by setting "nocompile" to true. 11 # Functions and namespaces can be excluded by setting "nocompile" to true.
12 'struct_gen_dir': '<(DEPTH)/tools/json_to_struct', 12 'struct_gen_dir': '<(DEPTH)/tools/json_to_struct',
13 'struct_gen': '<(struct_gen_dir)/json_to_struct.py', 13 'struct_gen%': '<(struct_gen_dir)/json_to_struct.py',
14 'output_filename%': '<(RULE_INPUT_ROOT)',
14 }, 15 },
15 'rules': [ 16 'rules': [
16 { 17 {
17 # GN version: //tools/json_to_struct/json_to_struct.gni 18 # GN version: //tools/json_to_struct/json_to_struct.gni
18 'rule_name': 'genstaticinit', 19 'rule_name': 'genstaticinit',
19 'extension': 'json', 20 'extension': 'json',
20 'inputs': [ 21 'inputs': [
22 '<(struct_gen)',
21 '<(struct_gen_dir)/element_generator.py', 23 '<(struct_gen_dir)/element_generator.py',
22 '<(struct_gen_dir)/json_to_struct.py', 24 '<(struct_gen_dir)/json_to_struct.py',
23 '<(struct_gen_dir)/struct_generator.py', 25 '<(struct_gen_dir)/struct_generator.py',
24 '<(schema_file)', 26 '<(schema_file)',
25 ], 27 ],
26 'outputs': [ 28 'outputs': [
27 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_ROOT).cc', 29 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(output_filename).cc',
28 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_ROOT).h', 30 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(output_filename).h',
29 ], 31 ],
30 'action': [ 32 'action': [
31 'python', 33 'python',
32 '<(struct_gen)', 34 '<(struct_gen)',
33 '<(RULE_INPUT_PATH)', 35 '<(RULE_INPUT_PATH)',
34 '--destbase=<(SHARED_INTERMEDIATE_DIR)', 36 '--destbase=<(SHARED_INTERMEDIATE_DIR)',
35 '--destdir=<(cc_dir)', 37 '--destdir=<(cc_dir)',
36 '--namespace=<(namespace)', 38 '--namespace=<(namespace)',
37 '--schema=<(schema_file)', 39 '--schema=<(schema_file)',
40 '--output=<(output_filename)',
38 ], 41 ],
39 'message': 'Generating C++ static initializers from <(RULE_INPUT_PATH)', 42 'message': 'Generating C++ static initializers from <(RULE_INPUT_PATH)',
40 'process_outputs_as_sources': 1, 43 'process_outputs_as_sources': 1,
41 }, 44 },
42 ], 45 ],
43 'include_dirs': [ 46 'include_dirs': [
44 '<(SHARED_INTERMEDIATE_DIR)', 47 '<(SHARED_INTERMEDIATE_DIR)',
45 '<(DEPTH)', 48 '<(DEPTH)',
46 ], 49 ],
47 # This target exports a hard dependency because it generates header 50 # This target exports a hard dependency because it generates header
48 # files. 51 # files.
49 'hard_dependency': 1, 52 'hard_dependency': 1,
50 } 53 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698