Don't target top-level test gyps if include_tests==0
Also add the possibility to pass a flag to the gyp run during gclient hooks.
Review URL: https://webrtc-codereview.appspot.com/729004
git-svn-id: http://webrtc.googlecode.com/svn/trunk@2582 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/DEPS b/DEPS
index ce715a3..3031a22 100644
--- a/DEPS
+++ b/DEPS
@@ -4,6 +4,7 @@
# Override root_dir in your .gclient's custom_vars to specify a custom root
# folder name.
"root_dir": "trunk",
+ "extra_gyp_flag": "-Dextra_gyp_flag=0",
# Use this googlecode_url variable only if there is an internal mirror for it.
# If you do not know, use the full path while defining your new deps entry.
@@ -121,7 +122,8 @@
# A change to a .gyp, .gypi, or to GYP itself should run the generator.
"pattern": ".",
"action": ["python", Var("root_dir") + "/build/gyp_chromium",
- "--depth=" + Var("root_dir"), Var("root_dir") + "/webrtc.gyp"],
+ "--depth=" + Var("root_dir"), Var("root_dir") + "/webrtc.gyp",
+ Var("extra_gyp_flag")],
},
]