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

Side by Side Diff: Source/bindings/modules/v8/generated.gyp

Issue 538913003: Do not skip site import on python startup. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated patch 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 | « Source/bindings/core/v8/generated.gyp ('k') | 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 2014 The Chromium Authors. All rights reserved. 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 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 # Generate IDL bindings for modules, plus aggregate bindings files. 5 # Generate IDL bindings for modules, plus aggregate bindings files.
6 # 6 #
7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build 7 # Design doc: http://www.chromium.org/developers/design-documents/idl-build
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 ], 59 ],
60 'outputs': [ 60 'outputs': [
61 '<(bindings_modules_v8_output_dir)/V8<(RULE_INPUT_ROOT).cpp', 61 '<(bindings_modules_v8_output_dir)/V8<(RULE_INPUT_ROOT).cpp',
62 '<(bindings_modules_v8_output_dir)/V8<(RULE_INPUT_ROOT).h', 62 '<(bindings_modules_v8_output_dir)/V8<(RULE_INPUT_ROOT).h',
63 ], 63 ],
64 # sanitize-win-build-log.sed uses a regex which matches this command 64 # sanitize-win-build-log.sed uses a regex which matches this command
65 # line (Python script + .idl file being processed). 65 # line (Python script + .idl file being processed).
66 # Update that regex if command line changes (other than changing flags) 66 # Update that regex if command line changes (other than changing flags)
67 'action': [ 67 'action': [
68 'python', 68 'python',
69 '-S', # skip 'import site' to speed up startup
70 '<(bindings_scripts_dir)/idl_compiler.py', 69 '<(bindings_scripts_dir)/idl_compiler.py',
71 '--cache-dir', 70 '--cache-dir',
72 '<(bindings_scripts_output_dir)', 71 '<(bindings_scripts_output_dir)',
73 '--output-dir', 72 '--output-dir',
74 '<(bindings_modules_v8_output_dir)', 73 '<(bindings_modules_v8_output_dir)',
75 '--interfaces-info', 74 '--interfaces-info',
76 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle', 75 '<(bindings_modules_output_dir)/InterfacesInfoModules.pickle',
77 '--write-file-only-if-changed', 76 '--write-file-only-if-changed',
78 '<(write_file_only_if_changed)', 77 '<(write_file_only_if_changed)',
79 '<(RULE_INPUT_PATH)', 78 '<(RULE_INPUT_PATH)',
(...skipping 30 matching lines...) Expand all
110 'target_name': 'bindings_modules_v8_generated', 109 'target_name': 'bindings_modules_v8_generated',
111 'type': 'none', 110 'type': 'none',
112 'dependencies': [ 111 'dependencies': [
113 'bindings_modules_v8_generated_aggregate', 112 'bindings_modules_v8_generated_aggregate',
114 'bindings_modules_v8_generated_individual', 113 'bindings_modules_v8_generated_individual',
115 ], 114 ],
116 }, 115 },
117 ################################################################################ 116 ################################################################################
118 ], # targets 117 ], # targets
119 } 118 }
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/generated.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698