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

Unified Diff: DEPS

Issue 23301019: Remove third_party/cld2 once (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Replace 'rm' with a python script (we can't use 'rm' on Windows) Created 7 years, 4 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
« no previous file with comments | « no previous file | build/util/remove_file.py » ('j') | build/util/remove_file.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: DEPS
diff --git a/DEPS b/DEPS
index 17bcf2420aa0226fb33a913466c25c9a2641e4cf..3c442cfa65c60f14bc0f706fd7d33446b3cedd1a 100644
--- a/DEPS
+++ b/DEPS
@@ -249,9 +249,6 @@ deps = {
"src/third_party/mesa/src":
"/trunk/deps/third_party/mesa@210110",
-
- "src/third_party/cld2":
- (Var("googlecode_url") % "cld2") + "/trunk@19",
}
@@ -340,7 +337,6 @@ deps_os = {
"src/native_client": None,
"src/native_client/src/third_party/ppapi": None,
"src/third_party/angle_dx11": None,
- "src/third_party/cld2": None,
"src/third_party/bidichecker": None,
"src/third_party/webgl_conformance": None,
"src/third_party/ffmpeg": None,
@@ -496,8 +492,6 @@ deps_os = {
"src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille":
(Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/googlecode/eyesfree/braille@797",
-
- "src/third_party/cld2": None,
},
}
@@ -625,4 +619,10 @@ hooks = [
"pattern": ".",
"action": ["python", "src/build/landmines.py"],
},
+ {
+ # Remove the current CLD2 to refetch CLD2 at the correct path 'src/third_party/cld2/src' later.
+ "name": "remove_cld2",
+ "pattern": ".",
+ "action": ["python", "src/build/util/remove_file.py", "src/third_party/cld2"],
Isaac (away) 2013/08/26 23:17:39 I think 'remove_tree' would be more accurate.
hajimehoshi 2013/08/27 03:40:50 Done.
+ },
]
« no previous file with comments | « no previous file | build/util/remove_file.py » ('j') | build/util/remove_file.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698