Index: build/android/gyp/util/build_utils.py |
diff --git a/build/android/gyp/util/build_utils.py b/build/android/gyp/util/build_utils.py |
index b8b94622d910ef41ea998567d3c10416b8fcf264..e40e5bab33e43074e9c5f1b8854dca02f2b61c9c 100644 |
--- a/build/android/gyp/util/build_utils.py |
+++ b/build/android/gyp/util/build_utils.py |
@@ -13,6 +13,10 @@ import sys |
import traceback |
+def CopyFile(src_file_path, dst_file_path): |
+ shutil.copy2(src_file_path, dst_file_path) |
+ |
+ |
def MakeDirectory(dir_path): |
try: |
os.makedirs(dir_path) |