| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # Copyright 2012 the V8 project authors. All rights reserved. | 2 # Copyright 2012 the V8 project authors. All rights reserved. |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following | 10 # copyright notice, this list of conditions and the following |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 echo -n "sync to $ANDROID_V8/tools" | 93 echo -n "sync to $ANDROID_V8/tools" |
| 94 sync_file tools/consarray.js | 94 sync_file tools/consarray.js |
| 95 sync_file tools/codemap.js | 95 sync_file tools/codemap.js |
| 96 sync_file tools/csvparser.js | 96 sync_file tools/csvparser.js |
| 97 sync_file tools/profile.js | 97 sync_file tools/profile.js |
| 98 sync_file tools/splaytree.js | 98 sync_file tools/splaytree.js |
| 99 sync_file tools/profile_view.js | 99 sync_file tools/profile_view.js |
| 100 sync_file tools/logreader.js | 100 sync_file tools/logreader.js |
| 101 sync_file tools/tickprocessor.js | 101 sync_file tools/tickprocessor.js |
| 102 echo "" | 102 echo "" |
| 103 sync_dir tools/profviz | |
| 104 sync_dir test/message | 103 sync_dir test/message |
| 105 sync_dir test/mjsunit | 104 sync_dir test/mjsunit |
| 106 sync_dir test/preparser | 105 sync_dir test/preparser |
| OLD | NEW |