Commit 3824f2ad by Dirk Pranke Committed by Angle LUCI CQ

Set gclient arg to not generate location tags.

This updates ANGLE to handle a Chromium //DEPS change from https://crrev.com/c/2957335; there is a way to generate component and file location metadata using `dirmd` in chromium test isolates, but we don't currently want to use this in ANGLE. This change updates the ANGLE DEPS file to propagate the right gclient variable into the gclient_gn_args_file so that the build continues to work. Bug: chromium:1218056 Change-Id: I0b27e08d3b7b35a17ba7dca6b6e032175637e8ae Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2963837Reviewed-by: 's avatarIan Elliott <ianelliott@google.com> Reviewed-by: 's avatarDirk Pranke <dpranke@google.com> Commit-Queue: Dirk Pranke <dpranke@google.com>
parent e62195c9
...@@ -7,6 +7,10 @@ use_relative_paths = True ...@@ -7,6 +7,10 @@ use_relative_paths = True
gclient_gn_args_file = 'build/config/gclient_args.gni' gclient_gn_args_file = 'build/config/gclient_args.gni'
gclient_gn_args = [
'generate_location_tags',
]
vars = { vars = {
'android_git': 'https://android.googlesource.com', 'android_git': 'https://android.googlesource.com',
'chromium_git': 'https://chromium.googlesource.com', 'chromium_git': 'https://chromium.googlesource.com',
...@@ -16,6 +20,9 @@ vars = { ...@@ -16,6 +20,9 @@ vars = {
# This variable is overrided in Chromium's DEPS file. # This variable is overrided in Chromium's DEPS file.
'build_with_chromium': False, 'build_with_chromium': False,
# We don't use location metadata in our test isolates.
'generate_location_tags': False,
# Only check out public sources by default. This can be overridden with custom_vars. # Only check out public sources by default. This can be overridden with custom_vars.
'checkout_angle_internal': False, 'checkout_angle_internal': False,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment