aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2018-07-11 09:12:07 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-11 09:13:21 -0700
commit29c43683db7dbcf437115bf46ae6fec723a9a29e (patch)
treeb6a058346da23e798f68b5b9e35064a090283d28 /src/test/java/com/google
parent9b745a79653947c1830f906a12572d673420fecc (diff)
Simplify dSYM handling
- Previously we would zip the output of dsymutil and then proceed to unzip it. Due to the size of dSYM files, this could add a few seconds to all builds with dSYMs. - There's no need to have a DsymOutputType or even Info.plist as all we need is the DWARF symbol file; the dSYM is repackaged later on by the bundler. This change is synchronized with the CROSSTOOL and wrapped_clang via the `no_dsym_create_zip` feature, which Bazel sets on the CROSSTOOL to inform wrapped_clang that no zip file should be created for the dSYM. PiperOrigin-RevId: 204134986
Diffstat (limited to 'src/test/java/com/google')
-rw-r--r--src/test/java/com/google/devtools/build/lib/rules/objc/AppleBinaryTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/rules/objc/AppleBinaryTest.java b/src/test/java/com/google/devtools/build/lib/rules/objc/AppleBinaryTest.java
index 412a4255b5..9813e64515 100644
--- a/src/test/java/com/google/devtools/build/lib/rules/objc/AppleBinaryTest.java
+++ b/src/test/java/com/google/devtools/build/lib/rules/objc/AppleBinaryTest.java
@@ -612,7 +612,7 @@ public class AppleBinaryTest extends ObjcRuleTestCase {
/** Returns the path to the dSYM binary artifact for given architecture and compilation mode. */
protected String dsymBinaryPath(String arch, CompilationMode mode) throws Exception {
return configurationBin(arch, ConfigurationDistinguisher.APPLEBIN_IOS, null, mode)
- + "examples/apple_skylark/bin.app.dSYM/Contents/Resources/DWARF/bin_bin";
+ + "examples/apple_skylark/bin_bin.dwarf";
}
/** Returns the path to the linkmap artifact for a given architecture. */