aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules/flavor/gn_flavor.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipe_modules/flavor/gn_flavor.py')
-rw-r--r--infra/bots/recipe_modules/flavor/gn_flavor.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/infra/bots/recipe_modules/flavor/gn_flavor.py b/infra/bots/recipe_modules/flavor/gn_flavor.py
index 1ea7cfe831..86b8b7968d 100644
--- a/infra/bots/recipe_modules/flavor/gn_flavor.py
+++ b/infra/bots/recipe_modules/flavor/gn_flavor.py
@@ -83,6 +83,10 @@ class GNFlavorUtils(default_flavor.DefaultFlavorUtils):
if len(extra_tokens) == 1 and extra_tokens[0].startswith('SK'):
extra_cflags.append('-D' + extra_tokens[0])
+ # If we're limiting Skia at all, drop skcms to portable code.
+ if 'SK_CPU_LIMIT' in extra_tokens[0]:
+ extra_cflags.append('-DSKCMS_PORTABLE')
+
if 'MSAN' in extra_tokens:
extra_ldflags.append('-L' + clang_linux + '/msan')