Skip to content

Commit

Permalink
Restore references to base/third_party/symbolize
Browse files Browse the repository at this point in the history
… changed by commit 1df0aa3.

Issue: 365546355
  • Loading branch information
dahlstrom-g committed Oct 6, 2024
1 parent efe9b49 commit c25707a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions starboard/android/shared/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@ static_library("starboard_platform") {

static_library("starboard_base_symbolize") {
sources = [
"//third_party/symbolize/demangle.cc",
"//third_party/symbolize/symbolize.cc",
"//base/third_party/symbolize/demangle.cc",
"//base/third_party/symbolize/symbolize.cc",
]

deps = [
Expand Down
4 changes: 2 additions & 2 deletions starboard/linux/shared/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ group("starboard_platform") {

static_library("starboard_base_symbolize") {
sources = [
"//third_party/symbolize/demangle.cc",
"//third_party/symbolize/symbolize.cc",
"//base/third_party/symbolize/demangle.cc",
"//base/third_party/symbolize/symbolize.cc",
]
deps = [
"//starboard:starboard_headers_only",
Expand Down
4 changes: 2 additions & 2 deletions starboard/raspi/shared/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ static_library("starboard_platform_sources") {

static_library("starboard_base_symbolize") {
sources = [
"//third_party/symbolize/demangle.cc",
"//third_party/symbolize/symbolize.cc",
"//base/third_party/symbolize/demangle.cc",
"//base/third_party/symbolize/symbolize.cc",
]
deps = [
"//starboard:starboard_headers_only",
Expand Down
2 changes: 1 addition & 1 deletion starboard/shared/linux/system_symbolize.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include "starboard/system.h"

#include "third_party/symbolize/symbolize.h"
#include "base/third_party/symbolize/symbolize.h"

bool SbSystemSymbolize(const void* address, char* out_buffer, int buffer_size) {
if (address == nullptr || *reinterpret_cast<const uintptr_t*>(address) == 0)
Expand Down

0 comments on commit c25707a

Please sign in to comment.