crashpad/test/ios/BUILD.gn
David Fang d5d78c1469 [third_party] Make mini_chromium relocatable
This will accommodate moving third_party/mini_chromium around.
The default location is unchanged for now.

There are GN variables that may need to be updated when Fuchsia's source
re-organizes its layout:

* mini_chromium_source_parent : this contains a BUILD.gn with groups and
encloses the mini_chromium_source_root.  This is controlled by the
structure of the project that depends on this project.

* _mini_chromium_source_root : this is what is normally checked out from
git, the upstream source directory

* mini_chromium_import_root : points inside source_root to make GN files
accessible.

This first step breaks out case logic for "if (crashpad_is_in_fuchsia)"
even if the value is unchanged for now.  This will faciliate a smaller
change when Fuchsia re-structures third_party sources.

Change-Id: I09e5362f4be8fdb440e3891422881b1053052341
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3062424
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Mark Mentovai <mark@chromium.org>
2021-08-11 15:26:03 +00:00

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",
"../$mini_chromium_source_parent: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",
"../$mini_chromium_source_parent: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" ]
}