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

Unified Diff: samples/samples_gen.py

Issue 1801008: Reorganized dependencies in generated samples_gen.gyp so that the... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 10 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/samples_gen.py
===================================================================
--- samples/samples_gen.py (revision 45997)
+++ samples/samples_gen.py (working copy)
@@ -81,7 +81,7 @@
],
'targets': [
{
- 'target_name': 'build_samples',
+ 'target_name': 'convert_samples',
'type': 'none',
'dependencies': [
'../converter/converter.gyp:o3dConverter',
@@ -108,7 +108,19 @@
output_file.write(" 'action_name': '%s',\n" % name)
output_file.write(" 'inputs': [\n")
output_file.write(" '<(PRODUCT_DIR)/o3dConverter',\n")
- output_file.write(" '../o3d_assets/samples/%s',\n" % asset['path'])
+ # TODO(kbr): there are a couple of problems with gyp's MSVC
+ # generator which require this workaround right now. First, if two
+ # actions have the same inputs then gyp will arbitrarily hang the
+ # custom build rule off the second input, and the collision will
+ # currently cause one or the other rule to be dropped. Second, if we
+ # just insert a fake second input, without removing the .zip, then
+ # for some reason the .zip ends up in an "_excluded_files" folder in
+ # the project and the non-WebGL version of the asset won't be built.
+ # Here we use a different input for the WebGL version of the assets.
+ if webgl_mode:
+ output_file.write(" '../o3d_assets/samples/%s.fake_webgl_input.txt',\n" % asset['path'])
+ else:
+ output_file.write(" '../o3d_assets/samples/%s',\n" % asset['path'])
output_file.write(" ],\n")
output_file.write(" 'outputs': [\n")
if sys.platform[:5] == 'linux':
@@ -138,11 +150,19 @@
output_file.write(" },\n")
for asset in assets:
- write_action(asset, False);
+ write_action(asset, False)
if asset.has_key('webgl'):
- write_action(asset, True);
+ write_action(asset, True)
-output_file.write(" ],\n")
+output_file.write(""" ],
+ },
+ {
+ 'target_name': 'copy_samples',
+ 'type': 'none',
+ 'dependencies': [
+ 'convert_samples',
+ ],
+ 'copies': [\n""")
# Coalesce copies by directory so we don't have tons of copies rules
# to parse.
@@ -174,7 +194,6 @@
else:
copies[item_dir] = [item]
-output_file.write(" 'copies': [\n")
for (dir, paths) in copies.items():
output_file.write(" {\n")
output_file.write(" 'destination': " \
@@ -194,6 +213,13 @@
output_file.write(" ],\n")
output_file.write(" },\n")
+output_file.write(""" {
+ 'target_name': 'build_samples',
+ 'type': 'none',
+ 'dependencies': [
+ 'copy_samples',
+ ],
+ },\n""")
output_file.write(" ],\n")
output_file.write("}\n")
« 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