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

Unified Diff: build/android/gyp/util/build_utils.py

Issue 14476011: [Android] Auto-generate API 14 resources from the existing API 17 resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added copying script action. Pretty much complete I think Created 7 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
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)

Powered by Google App Engine
This is Rietveld 408576698