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

Side by Side Diff: src/d8.gyp

Issue 1294543006: Allowing optional build of a WASM prototype behind a gyp define. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: drop deps Created 5 years, 4 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 | « src/d8.cc ('k') | src/flag-definitions.h » ('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 V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 'dependencies': [ 91 'dependencies': [
92 '<(icu_gyp_path):icui18n', 92 '<(icu_gyp_path):icui18n',
93 '<(icu_gyp_path):icuuc', 93 '<(icu_gyp_path):icuuc',
94 ], 94 ],
95 }], 95 }],
96 ['OS=="win" and v8_enable_i18n_support==1', { 96 ['OS=="win" and v8_enable_i18n_support==1', {
97 'dependencies': [ 97 'dependencies': [
98 '<(icu_gyp_path):icudata', 98 '<(icu_gyp_path):icudata',
99 ], 99 ],
100 }], 100 }],
101 ['v8_wasm!=0', {
102 'include_dirs': ['../third_party/wasm'],
103 }],
101 ], 104 ],
102 }, 105 },
103 { 106 {
104 'target_name': 'd8_js2c', 107 'target_name': 'd8_js2c',
105 'type': 'none', 108 'type': 'none',
106 'variables': { 109 'variables': {
107 'js_files': [ 110 'js_files': [
108 'd8.js', 111 'd8.js',
109 'macros.py', 112 'macros.py',
110 ], 113 ],
(...skipping 20 matching lines...) Expand all
131 '../tools/js2c.py', 134 '../tools/js2c.py',
132 '<@(_outputs)', 135 '<@(_outputs)',
133 'D8', 136 'D8',
134 '<@(js_files)' 137 '<@(js_files)'
135 ], 138 ],
136 }, 139 },
137 ], 140 ],
138 } 141 }
139 ], 142 ],
140 } 143 }
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698