aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools
diff options
context:
space:
mode:
authorGravatar djsollen <djsollen@google.com>2016-07-06 09:17:35 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-06 09:17:36 -0700
commitd5fd2ff49067efebcd7e28fdc787ec21b2176152 (patch)
treebae3d99e9e3a7b8686c57f022b13c11593aee1fd /platform_tools
parent2f5792a06c87efd5f9295b7b7bb714aac118bd2a (diff)
Compile Vulkan when building for the Android framework.
Diffstat (limited to 'platform_tools')
-rw-r--r--platform_tools/android/gyp_gen/gypd_parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform_tools/android/gyp_gen/gypd_parser.py b/platform_tools/android/gyp_gen/gypd_parser.py
index e992637637..082d2645a4 100644
--- a/platform_tools/android/gyp_gen/gypd_parser.py
+++ b/platform_tools/android/gyp_gen/gypd_parser.py
@@ -89,7 +89,7 @@ def parse_dictionary(var_dict, d, current_target_name, dest_dir):
var_dict.LOCAL_CPPFLAGS.add(flag)
for include in d.get('include_dirs', []):
- if include.startswith('external'):
+ if include.startswith('external') or include.startswith('frameworks'):
# This path is relative to the Android root. Leave it alone.
rel_include = include
else: