mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 15:21:13 +08:00
e3abe1ed44
The gn-args have default values in fuchsia-gn-sdk and not necessary to be repeated - api-level 18 is also removed and breaks crashpad. Bug: crashpad:365889763 Change-Id: I2a5a573158db434dd578c92455d0af6c96408d74 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/5854005 Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org>
33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
# Copyright 2024 The Crashpad Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# This file is copied from
|
|
# https://crsrc.org/c/build/config/fuchsia/gn_configs.gni?q=gn_configs.gni
|
|
# with some local modifications to match the crashpad setup.
|
|
|
|
# Path to the fuchsia SDK. This is intended for use in other templates &
|
|
# rules to reference the contents of the fuchsia SDK.
|
|
fuchsia_sdk = "//third_party/fuchsia/sdk/linux-amd64"
|
|
|
|
declare_args() {
|
|
# Specify a readelf_exec path to use. If not specified, the host's system
|
|
# executable will be used. Passed to populate_build_id_dir.py and
|
|
# prepare_package_inputs.py via the --readelf-exec flag.
|
|
# Must be a GN path (not an absolute path) since it is adjusted with
|
|
# rebase_path().
|
|
if (!defined(fuchsia_sdk_readelf_exec)) {
|
|
fuchsia_sdk_readelf_exec = ""
|
|
}
|
|
}
|