mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-10 14:46:07 +00:00
GN recently added support for Apple frameworks to link, rather than overloading the libs lists. This pulls .frameworks out of the libs lists, so that GN can stop supporting .frameworks in libs in the future. Roll mini_chromium ae14a14ab..cd26c5101 $ git log ae14a14ab..cd26c5101 --date=short --no-merges --format='%ad %ae %s' 2020-07-01 rsesek@chromium.org apple: Expand {{framework_dirs}} and {{frameworks}} in the toolchain. Bug: chromium:1052560 Change-Id: Id70bceb57174a52c6f4a7f72378a3ee0ae89f64d Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2278022 Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Robert Sesek <rsesek@chromium.org>
81 lines
2.2 KiB
Plaintext
81 lines
2.2 KiB
Plaintext
# Copyright 2020 The Crashpad Authors. All rights reserved.
|
|
#
|
|
# 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.
|
|
|
|
import("../../build/crashpad_buildconfig.gni")
|
|
|
|
if (crashpad_is_in_chromium) {
|
|
import("//build/config/ios/rules.gni")
|
|
} else if (crashpad_is_standalone) {
|
|
import("//third_party/mini_chromium/mini_chromium/build/ios/rules.gni")
|
|
}
|
|
|
|
group("all_tests") {
|
|
testonly = true
|
|
deps = [
|
|
":ios_crash_xcuitests_module",
|
|
"host:ios_crash_xcuitests",
|
|
]
|
|
}
|
|
|
|
source_set("google_test_runner_shared_headers") {
|
|
testonly = true
|
|
sources = [ "cptest_google_test_runner_delegate.h" ]
|
|
}
|
|
|
|
source_set("google_test_runner") {
|
|
testonly = true
|
|
sources = [ "cptest_google_test_runner.mm" ]
|
|
configs += [ "../..:crashpad_config" ]
|
|
deps = [
|
|
"../../build:ios_enable_arc",
|
|
"../../build:ios_xctest",
|
|
"../../test/ios:google_test_runner_shared_headers",
|
|
"../../third_party/mini_chromium:base",
|
|
]
|
|
frameworks = [ "UIKit.framework" ]
|
|
}
|
|
|
|
source_set("google_test_setup") {
|
|
testonly = true
|
|
sources = [
|
|
"google_test_setup.h",
|
|
"google_test_setup.mm",
|
|
]
|
|
configs += [ "../..:crashpad_config" ]
|
|
deps = [
|
|
":google_test_runner_shared_headers",
|
|
"../../build:ios_enable_arc",
|
|
"../../third_party/googletest:googletest",
|
|
"../../third_party/mini_chromium:base",
|
|
]
|
|
frameworks = [ "UIKit.framework" ]
|
|
}
|
|
|
|
source_set("xcuitests") {
|
|
testonly = true
|
|
sources = [ "crash_type_xctest.mm" ]
|
|
configs += [ "../..:crashpad_config" ]
|
|
deps = [
|
|
"../../build:ios_enable_arc",
|
|
"../../build:ios_xctest",
|
|
"../../test/ios/host:app_shared_sources",
|
|
"../../third_party/edo",
|
|
]
|
|
}
|
|
|
|
ios_xcuitest_test("ios_crash_xcuitests_module") {
|
|
xcode_test_application_name = "ios_crash_xcuitests"
|
|
deps = [ ":xcuitests" ]
|
|
}
|