aboutsummaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorJoshua Peraza <jperaza@chromium.org>2018-07-31 11:48:27 -0700
committerJoshua Peraza <jperaza@chromium.org>2018-07-31 18:52:20 +0000
commit948ce04ed74397331c158c13209fd2370c2dbd5a (patch)
tree028d76694efbaf2028d3e07d9f81ec36849ad04c /src/tools
parentAdd path_helper.cc and path_helper.h to dump_syms.xcodeproj. (diff)
downloadbreakpad-948ce04ed74397331c158c13209fd2370c2dbd5a.tar.xz
mac: Fix broken xcode projects
Change-Id: I1cd8f0b0224c9b629dda720c11f6c081b175f8bd Reviewed-on: https://chromium-review.googlesource.com/1157121 Reviewed-by: Mark Mentovai <mark@chromium.org>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj9
-rw-r--r--src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj216
2 files changed, 118 insertions, 107 deletions
diff --git a/src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj b/src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj
index c2bd3b8b..ff5eadc0 100644
--- a/src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj
+++ b/src/tools/mac/crash_report/crash_report.xcodeproj/project.pbxproj
@@ -8,6 +8,7 @@
/* Begin PBXBuildFile section */
162F64FE161C5ECB00CD68D5 /* arch_utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 162F64FC161C5ECB00CD68D5 /* arch_utilities.cc */; };
+ 4247E6402110D5A500482558 /* path_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4247E63F2110D5A500482558 /* path_helper.cc */; };
4D2C721B126F9ACC00B43EAF /* source_line_resolver_base.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D2C721A126F9ACC00B43EAF /* source_line_resolver_base.cc */; };
4D2C721F126F9ADE00B43EAF /* exploitability.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D2C721E126F9ADE00B43EAF /* exploitability.cc */; };
4D2C7223126F9AF900B43EAF /* exploitability_win.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D2C7222126F9AF900B43EAF /* exploitability_win.cc */; };
@@ -81,6 +82,8 @@
08FB779EFE84155DC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
162F64FC161C5ECB00CD68D5 /* arch_utilities.cc */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = arch_utilities.cc; path = ../../../common/mac/arch_utilities.cc; sourceTree = "<group>"; };
162F64FD161C5ECB00CD68D5 /* arch_utilities.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = arch_utilities.h; path = ../../../common/mac/arch_utilities.h; sourceTree = "<group>"; };
+ 4247E63E2110D5A500482558 /* path_helper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = path_helper.h; path = ../../../common/path_helper.h; sourceTree = "<group>"; };
+ 4247E63F2110D5A500482558 /* path_helper.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = path_helper.cc; path = ../../../common/path_helper.cc; sourceTree = "<group>"; };
4D2C721A126F9ACC00B43EAF /* source_line_resolver_base.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = source_line_resolver_base.cc; path = ../../../processor/source_line_resolver_base.cc; sourceTree = SOURCE_ROOT; };
4D2C721E126F9ADE00B43EAF /* exploitability.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exploitability.cc; path = ../../../processor/exploitability.cc; sourceTree = SOURCE_ROOT; };
4D2C7222126F9AF900B43EAF /* exploitability_win.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = exploitability_win.cc; path = ../../../processor/exploitability_win.cc; sourceTree = SOURCE_ROOT; };
@@ -215,6 +218,8 @@
08FB7794FE84155DC02AAC07 /* crash_report */ = {
isa = PBXGroup;
children = (
+ 4247E63F2110D5A500482558 /* path_helper.cc */,
+ 4247E63E2110D5A500482558 /* path_helper.h */,
8B31025311F0D2D400FCF3E4 /* Breakpad.xcconfig */,
8B3102DA11F0D65600FCF3E4 /* BreakpadDebug.xcconfig */,
8B3102DB11F0D65600FCF3E4 /* BreakpadRelease.xcconfig */,
@@ -446,8 +451,11 @@
/* Begin PBXProject section */
08FB7793FE84155DC02AAC07 /* Project object */ = {
isa = PBXProject;
+ attributes = {
+ };
buildConfigurationList = 1DEB927808733DD40010E9CD /* Build configuration list for PBXProject "crash_report" */;
compatibilityVersion = "Xcode 3.1";
+ developmentRegion = en;
hasScannedForEncodings = 1;
knownRegions = (
English,
@@ -526,6 +534,7 @@
4D2C7246126F9C0B00B43EAF /* ia32_insn.c in Sources */,
4D2C724A126F9C2300B43EAF /* ia32_opcode_tables.c in Sources */,
4D2C724C126F9C3800B43EAF /* ia32_implicit.c in Sources */,
+ 4247E6402110D5A500482558 /* path_helper.cc in Sources */,
F44DDD8919C85CD50047280E /* microdump_processor.cc in Sources */,
4D2C724E126F9C4D00B43EAF /* ia32_reg.c in Sources */,
4D2C725B126F9C8000B43EAF /* ia32_operand.c in Sources */,
diff --git a/src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj b/src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj
index a724a60d..27e6f399 100644
--- a/src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj
+++ b/src/tools/mac/dump_syms/dump_syms.xcodeproj/project.pbxproj
@@ -35,6 +35,7 @@
/* Begin PBXBuildFile section */
162F64FA161C591500CD68D5 /* arch_utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 162F64F8161C591500CD68D5 /* arch_utilities.cc */; };
162F6500161C5F2200CD68D5 /* arch_utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 162F64F8161C591500CD68D5 /* arch_utilities.cc */; };
+ 4247E63D2110D4B200482558 /* path_helper.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB06C7511FEBC515000214D9 /* path_helper.cc */; };
4D72CAF513DFBAC2006CABE3 /* md5.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D72CAF413DFBAC2006CABE3 /* md5.cc */; };
8BCAAA4C1CE3A7980046090B /* elf_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BCAAA4A1CE3A7980046090B /* elf_reader.cc */; };
8BCAAA4D1CE3B1260046090B /* elf_reader.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BCAAA4A1CE3A7980046090B /* elf_reader.cc */; };
@@ -342,9 +343,9 @@
B89E0E701166573700DD08C9 /* macho_dump.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = macho_dump.cc; sourceTree = "<group>"; };
B89E0E741166575200DD08C9 /* macho_dump */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = macho_dump; sourceTree = BUILT_PRODUCTS_DIR; };
B89E0E9511665A6400DD08C9 /* macho_reader_unittest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = macho_reader_unittest; sourceTree = BUILT_PRODUCTS_DIR; };
- B89E0E9F11665AC300DD08C9 /* gtest_main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = gtest_main.cc; path = ../../../testing/gtest/src/gtest_main.cc; sourceTree = SOURCE_ROOT; };
- B89E0EA011665AC300DD08C9 /* gtest-all.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "gtest-all.cc"; path = "../../../testing/gtest/src/gtest-all.cc"; sourceTree = SOURCE_ROOT; };
- B89E0EA311665AEA00DD08C9 /* gmock-all.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "gmock-all.cc"; path = "../../../testing/src/gmock-all.cc"; sourceTree = SOURCE_ROOT; };
+ B89E0E9F11665AC300DD08C9 /* gtest_main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = gtest_main.cc; path = ../../../testing/googletest/src/gtest_main.cc; sourceTree = SOURCE_ROOT; };
+ B89E0EA011665AC300DD08C9 /* gtest-all.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "gtest-all.cc"; path = "../../../testing/googletest/src/gtest-all.cc"; sourceTree = SOURCE_ROOT; };
+ B89E0EA311665AEA00DD08C9 /* gmock-all.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "gmock-all.cc"; path = "../../../testing/googlemock/src/gmock-all.cc"; sourceTree = SOURCE_ROOT; };
B8C5B5111166531A00D34F4E /* dump_syms */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = dump_syms; sourceTree = BUILT_PRODUCTS_DIR; };
B8E8CA0C1156C854009E61B2 /* byteswap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = byteswap.h; path = ../../../common/mac/byteswap.h; sourceTree = SOURCE_ROOT; };
D21F97D211CBA0F200239E38 /* test_assembler_unittest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = test_assembler_unittest; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -1064,6 +1065,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ 4247E63D2110D4B200482558 /* path_helper.cc in Sources */,
162F6500161C5F2200CD68D5 /* arch_utilities.cc in Sources */,
B89E0E781166576C00DD08C9 /* macho_reader.cc in Sources */,
B89E0E7A1166576C00DD08C9 /* macho_dump.cc in Sources */,
@@ -1266,10 +1268,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = stabs_to_module_unittest;
};
@@ -1280,10 +1282,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = stabs_to_module_unittest;
};
@@ -1294,10 +1296,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
@@ -1313,10 +1315,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
@@ -1347,10 +1349,10 @@
GCC_PREPROCESSOR_DEFINITIONS = HAVE_MACH_O_NLIST_H;
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = stabs_reader_unittest;
};
@@ -1362,10 +1364,10 @@
GCC_PREPROCESSOR_DEFINITIONS = HAVE_MACH_O_NLIST_H;
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = stabs_reader_unittest;
};
@@ -1376,10 +1378,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = gtestmockall;
};
@@ -1390,10 +1392,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = gtestmockall;
};
@@ -1404,10 +1406,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = module_unittest;
};
@@ -1418,10 +1420,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = module_unittest;
};
@@ -1432,10 +1434,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = dwarf2diehandler_unittest;
};
@@ -1446,10 +1448,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = dwarf2diehandler_unittest;
};
@@ -1460,10 +1462,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = dwarf_line_to_module_unittest;
};
@@ -1474,10 +1476,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = dwarf_line_to_module_unittest;
};
@@ -1488,10 +1490,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = dwarf_cu_to_module_unittest;
};
@@ -1502,10 +1504,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = dwarf_cu_to_module_unittest;
};
@@ -1516,10 +1518,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = dwarf_cfi_to_module_unittest;
};
@@ -1530,10 +1532,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = dwarf_cfi_to_module_unittest;
};
@@ -1544,10 +1546,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = bytereader_unittest;
};
@@ -1558,10 +1560,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
);
PRODUCT_NAME = bytereader_unittest;
};
@@ -1572,10 +1574,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
);
PRODUCT_NAME = byte_cursor_unittest;
};
@@ -1586,10 +1588,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
);
PRODUCT_NAME = byte_cursor_unittest;
};
@@ -1614,10 +1616,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
);
PRODUCT_NAME = macho_reader_unittest;
};
@@ -1628,10 +1630,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
);
PRODUCT_NAME = macho_reader_unittest;
};
@@ -1660,10 +1662,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
);
PRODUCT_NAME = test_assembler_unittest;
};
@@ -1674,10 +1676,10 @@
buildSettings = {
HEADER_SEARCH_PATHS = (
$inherited,
- ../../../testing,
- ../../../testing/include,
- ../../../testing/gtest,
- ../../../testing/gtest/include,
+ ../../../testing/googletest,
+ ../../../testing/googletest/include,
+ ../../../testing/googlemock,
+ ../../../testing/googlemock/include,
);
PRODUCT_NAME = test_assembler_unittest;
};