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

Side by Side Diff: tools/android-sync.sh

Issue 1616393002: Bug fix: A bug in android-sync tool (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Bug fix: A bug in android-sync tool Created 4 years, 10 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 | « AUTHORS ('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 #!/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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 for FILE in $(find "$HOST_V8/$DIR" -not -path "*.svn*" -type f); do 81 for FILE in $(find "$HOST_V8/$DIR" -not -path "*.svn*" -type f); do
82 local RELATIVE_FILE=${FILE:${#HOST_V8}} 82 local RELATIVE_FILE=${FILE:${#HOST_V8}}
83 sync_file "$RELATIVE_FILE" 83 sync_file "$RELATIVE_FILE"
84 done 84 done
85 echo "" 85 echo ""
86 } 86 }
87 87
88 echo -n "sync to $ANDROID_V8/$OUTDIR/$ARCH_MODE" 88 echo -n "sync to $ANDROID_V8/$OUTDIR/$ARCH_MODE"
89 sync_file "$OUTDIR/$ARCH_MODE/cctest" 89 sync_file "$OUTDIR/$ARCH_MODE/cctest"
90 sync_file "$OUTDIR/$ARCH_MODE/d8" 90 sync_file "$OUTDIR/$ARCH_MODE/d8"
91 sync_file "$OUTDIR/$ARCH_MODE/natives_blob.bin"
92 sync_file "$OUTDIR/$ARCH_MODE/snapshot_blob.bin"
91 sync_file "$OUTDIR/$ARCH_MODE/unittests" 93 sync_file "$OUTDIR/$ARCH_MODE/unittests"
92 echo "" 94 echo ""
93 echo -n "sync to $ANDROID_V8/tools" 95 echo -n "sync to $ANDROID_V8/tools"
94 sync_file tools/consarray.js 96 sync_file tools/consarray.js
95 sync_file tools/codemap.js 97 sync_file tools/codemap.js
96 sync_file tools/csvparser.js 98 sync_file tools/csvparser.js
97 sync_file tools/profile.js 99 sync_file tools/profile.js
98 sync_file tools/splaytree.js 100 sync_file tools/splaytree.js
99 sync_file tools/profile_view.js 101 sync_file tools/profile_view.js
100 sync_file tools/logreader.js 102 sync_file tools/logreader.js
101 sync_file tools/tickprocessor.js 103 sync_file tools/tickprocessor.js
102 echo "" 104 echo ""
103 sync_dir tools/profviz 105 sync_dir tools/profviz
104 sync_dir test/intl 106 sync_dir test/intl
105 sync_dir test/message 107 sync_dir test/message
106 sync_dir test/mjsunit 108 sync_dir test/mjsunit
107 sync_dir test/preparser 109 sync_dir test/preparser
OLDNEW
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698