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

Side by Side Diff: build/json_schema_compile.gypi

Issue 232183002: Chromium side changes to add the ledger API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 7 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_browser_extensions.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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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_files: a list of json or IDL files that comprise the api model. 8 # schema_files: a list of json or IDL files that comprise the api model.
9 # cc_dir: path to generated files 9 # cc_dir: path to generated files
10 # root_namespace: the C++ namespace that all generated files go under 10 # root_namespace: the C++ namespace that all generated files go under
(...skipping 21 matching lines...) Expand all
32 '<(api_gen_dir)/model.py', 32 '<(api_gen_dir)/model.py',
33 '<(api_gen_dir)/util.cc', 33 '<(api_gen_dir)/util.cc',
34 '<(api_gen_dir)/util.h', 34 '<(api_gen_dir)/util.h',
35 '<(api_gen_dir)/util_cc_helper.py', 35 '<(api_gen_dir)/util_cc_helper.py',
36 # TODO(calamity): uncomment this when gyp on windows behaves like other 36 # TODO(calamity): uncomment this when gyp on windows behaves like other
37 # platforms. List expansions of filepaths in inputs expand to different 37 # platforms. List expansions of filepaths in inputs expand to different
38 # things. 38 # things.
39 # '<@(schema_files)', 39 # '<@(schema_files)',
40 ], 40 ],
41 'outputs': [ 41 'outputs': [
42 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_ROOT).cc', 42 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT _ROOT).cc',
43 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_ROOT).h', 43 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT _ROOT).h',
44 ], 44 ],
45 'action': [ 45 'action': [
46 'python', 46 'python',
47 '<(api_gen)', 47 '<(api_gen)',
48 '<(RULE_INPUT_PATH)', 48 '<(RULE_INPUT_PATH)',
49 '--root=<(DEPTH)', 49 '--root=<(DEPTH)',
50 '--destdir=<(SHARED_INTERMEDIATE_DIR)', 50 '--destdir=<(SHARED_INTERMEDIATE_DIR)',
51 '--namespace=<(root_namespace)', 51 '--namespace=<(root_namespace)',
52 '--generator=cpp', 52 '--generator=cpp',
53 '--impl-dir=<(impl_dir)' 53 '--impl-dir=<(impl_dir)'
(...skipping 17 matching lines...) Expand all
71 '<(api_gen_dir)/model.py', 71 '<(api_gen_dir)/model.py',
72 '<(api_gen_dir)/util.cc', 72 '<(api_gen_dir)/util.cc',
73 '<(api_gen_dir)/util.h', 73 '<(api_gen_dir)/util.h',
74 '<(api_gen_dir)/util_cc_helper.py', 74 '<(api_gen_dir)/util_cc_helper.py',
75 # TODO(calamity): uncomment this when gyp on windows behaves like other 75 # TODO(calamity): uncomment this when gyp on windows behaves like other
76 # platforms. List expansions of filepaths in inputs expand to different 76 # platforms. List expansions of filepaths in inputs expand to different
77 # things. 77 # things.
78 # '<@(schema_files)', 78 # '<@(schema_files)',
79 ], 79 ],
80 'outputs': [ 80 'outputs': [
81 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_ROOT).cc', 81 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT _ROOT).cc',
82 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_ROOT).h', 82 '<(SHARED_INTERMEDIATE_DIR)/<(cc_dir)/<(RULE_INPUT_DIRNAME)/<(RULE_INPUT _ROOT).h',
83 ], 83 ],
84 'action': [ 84 'action': [
85 'python', 85 'python',
86 '<(api_gen)', 86 '<(api_gen)',
87 '<(RULE_INPUT_PATH)', 87 '<(RULE_INPUT_PATH)',
88 '--root=<(DEPTH)', 88 '--root=<(DEPTH)',
89 '--destdir=<(SHARED_INTERMEDIATE_DIR)', 89 '--destdir=<(SHARED_INTERMEDIATE_DIR)',
90 '--namespace=<(root_namespace)', 90 '--namespace=<(root_namespace)',
91 '--generator=cpp', 91 '--generator=cpp',
92 '--impl-dir=<(impl_dir)' 92 '--impl-dir=<(impl_dir)'
(...skipping 11 matching lines...) Expand all
104 ], 104 ],
105 'direct_dependent_settings': { 105 'direct_dependent_settings': {
106 'include_dirs': [ 106 'include_dirs': [
107 '<(SHARED_INTERMEDIATE_DIR)', 107 '<(SHARED_INTERMEDIATE_DIR)',
108 ] 108 ]
109 }, 109 },
110 # This target exports a hard dependency because it generates header 110 # This target exports a hard dependency because it generates header
111 # files. 111 # files.
112 'hard_dependency': 1, 112 'hard_dependency': 1,
113 } 113 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698