aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/gn_to_bp_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn/gn_to_bp_utils.py')
-rw-r--r--gn/gn_to_bp_utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gn/gn_to_bp_utils.py b/gn/gn_to_bp_utils.py
index 78217a79db..91fec4c288 100644
--- a/gn/gn_to_bp_utils.py
+++ b/gn/gn_to_bp_utils.py
@@ -33,6 +33,8 @@ def GrabDependentValues(js, name, value_type, list_to_extend, exclude):
# Grab the values from other targets that $name depends on (e.g. optional
# Skia components, gms, tests, etc).
for dep in js['targets'][name]['deps']:
+ if 'modules' in dep:
+ continue # Modules require special handling -- skip for now.
if 'third_party' in dep:
continue # We've handled all third-party DEPS as static or shared_libs.
if 'none' in dep: