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

Side by Side Diff: mojo/public/tools/bindings/mojom_bindings_generator.gypi

Issue 534263002: Fix python bindings generator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'rules': [ 6 'rules': [
7 { 7 {
8 'rule_name': '<(_target_name)_mojom_bindings_generator', 8 'rule_name': '<(_target_name)_mojom_bindings_generator',
9 'extension': 'mojom', 9 'extension': 'mojom',
10 'variables': { 10 'variables': {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/__init__.py', 68 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/__init__.py',
69 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/ast.py', 69 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/ast.py',
70 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/lexer.py', 70 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/lexer.py',
71 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/parser.py', 71 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/parser.py',
72 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/translate.py', 72 '<(DEPTH)/mojo/public/tools/bindings/pylib/mojom/parse/translate.py',
73 ], 73 ],
74 'outputs': [ 74 'outputs': [
75 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom.cc', 75 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom.cc',
76 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom.h', 76 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom.h',
77 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom.js', 77 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom.js',
78 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom.py', 78 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT)_mojom.py',
79 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom-internal.h', 79 '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_DIRNAM E)/<(RULE_INPUT_ROOT).mojom-internal.h',
80 ], 80 ],
81 'action': [ 81 'action': [
82 'python', '<@(mojom_bindings_generator)', 82 'python', '<@(mojom_bindings_generator)',
83 './<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).mojom', 83 './<(RULE_INPUT_DIRNAME)/<(RULE_INPUT_ROOT).mojom',
84 '--use_chromium_bundled_pylibs', 84 '--use_chromium_bundled_pylibs',
85 '-d', '<(DEPTH)', 85 '-d', '<(DEPTH)',
86 '<@(mojom_import_args)', 86 '<@(mojom_import_args)',
87 '-o', '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_ DIRNAME)', 87 '-o', '<(SHARED_INTERMEDIATE_DIR)/<(mojom_base_output_dir)/<(RULE_INPUT_ DIRNAME)',
88 '--java_output_directory=<(java_out_dir)', 88 '--java_output_directory=<(java_out_dir)',
(...skipping 12 matching lines...) Expand all
101 '<(SHARED_INTERMEDIATE_DIR)', 101 '<(SHARED_INTERMEDIATE_DIR)',
102 ], 102 ],
103 'variables': { 103 'variables': {
104 'generated_src_dirs': [ 104 'generated_src_dirs': [
105 '<(PRODUCT_DIR)/java_mojo/<(_target_name)/src', 105 '<(PRODUCT_DIR)/java_mojo/<(_target_name)/src',
106 ], 106 ],
107 }, 107 },
108 }, 108 },
109 'hard_dependency': 1, 109 'hard_dependency': 1,
110 } 110 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698