40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
# Copyright 2020 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.
|
|
|
|
[goma]
|
|
# Controls whether goma is enabled or not. If you generally use goma but
|
|
# want to disable goma for a single build, consider using the environment
|
|
# variable GOMA_DISABLED.
|
|
enabled = False
|
|
install = "$GOMA_DIR"
|
|
|
|
[xcode]
|
|
# Controls settings for the generated Xcode project. If jobs is non-zero
|
|
# it will be passed to the ninja invocation in Xcode project.
|
|
jobs = 0
|
|
|
|
[build]
|
|
# Controls the build output. The only supported values are "64-bit", "32-bit"
|
|
# and "fat" (for a fat binary supporting both "32-bit" and "64-bit" cpus).
|
|
arch = "64-bit"
|
|
|
|
[gn_args]
|
|
# Values in that section will be copied verbatim in the generated args.gn file.
|
|
target_os = "ios"
|
|
|
|
[filters]
|
|
# List of target files to pass to --filters argument of gn gen when generating
|
|
# the Xcode project. By default, list all targets from ios/ and ios_internal/
|
|
# and the targets corresponding to the unit tests run on the bots.
|