Chromium Code Reviews| Index: samples/third_party/dromaeo/generate_frog_tests.py |
| diff --git a/samples/third_party/dromaeo/generate_frog_tests.py b/samples/third_party/dromaeo/generate_frog_tests.py |
| index 069336955f0a1a2ec1cb56a384de51a18d7d343a..b541664f17fb24de54b4941c041ecabcfa3d997f 100755 |
| --- a/samples/third_party/dromaeo/generate_frog_tests.py |
| +++ b/samples/third_party/dromaeo/generate_frog_tests.py |
| @@ -18,10 +18,9 @@ def Compile(source, target): |
| binary = os.path.abspath(os.path.join(DART_PATH, |
| utils.GetBuildRoot(utils.GuessOS(), |
| 'release', 'ia32'), |
| - 'frog', 'bin', 'frogsh')) |
| + 'dart-sdk', 'bin', 'frogc')) |
|
Emily Fortuna
2012/04/02 21:27:41
The reason I was getting a File not Found for thes
vsm
2012/04/02 22:16:19
Thanks for the catch. Added a makedirs if the pat
|
| cmd = [binary, '--compile-only', |
| - '--libdir=' + os.path.join(DART_PATH, 'frog', 'lib'), |
| '--out=' + target] |
| cmd.append(source) |
| print 'Executing: ' + ' '.join(cmd) |