File tree Expand file tree Collapse file tree 10 files changed +15
-19
lines changed Expand file tree Collapse file tree 10 files changed +15
-19
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ tensorstore_cc_library(
186
186
":index_interval" ,
187
187
":rank" ,
188
188
":static_cast" ,
189
- "//tensorstore/internal:gdb_scripting " ,
189
+ "//tensorstore/internal:lldb_scripting " ,
190
190
"//tensorstore/internal/container:multi_vector" ,
191
191
"//tensorstore/internal/container:multi_vector_view" ,
192
192
"//tensorstore/internal/meta:attributes" ,
@@ -810,8 +810,8 @@ tensorstore_cc_library(
810
810
":index" ,
811
811
":rank" ,
812
812
":static_cast" ,
813
- "//tensorstore/internal:gdb_scripting" ,
814
813
"//tensorstore/internal:integer_overflow" ,
814
+ "//tensorstore/internal:lldb_scripting" ,
815
815
"//tensorstore/internal/container:multi_vector" ,
816
816
"//tensorstore/internal/container:multi_vector_view" ,
817
817
"//tensorstore/internal/meta:attributes" ,
Original file line number Diff line number Diff line change 31
31
#include " tensorstore/index_interval.h"
32
32
#include " tensorstore/internal/container/multi_vector.h"
33
33
#include " tensorstore/internal/container/multi_vector_view.h"
34
- #include " tensorstore/internal/gdb_scripting .h"
34
+ #include " tensorstore/internal/lldb_scripting .h"
35
35
#include " tensorstore/internal/meta/attributes.h"
36
36
#include " tensorstore/internal/meta/type_traits.h"
37
37
#include " tensorstore/rank.h"
Original file line number Diff line number Diff line change @@ -399,10 +399,9 @@ tensorstore_cc_library(
399
399
)
400
400
401
401
tensorstore_cc_library (
402
- name = "gdb_scripting " ,
403
- hdrs = ["gdb_scripting .h" ],
402
+ name = "lldb_scripting " ,
403
+ hdrs = ["lldb_scripting .h" ],
404
404
deps = [
405
- "@abseil-cpp//absl/base:core_headers" ,
406
405
],
407
406
)
408
407
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ tensorstore_cc_library(
160
160
],
161
161
deps = [
162
162
"//tensorstore:rank" ,
163
- "//tensorstore/internal:gdb_scripting " ,
163
+ "//tensorstore/internal:lldb_scripting " ,
164
164
"//tensorstore/internal/meta" ,
165
165
"//tensorstore/internal/meta:type_traits" ,
166
166
"//tensorstore/util:division" ,
@@ -186,7 +186,7 @@ tensorstore_cc_library(
186
186
deps = [
187
187
"//tensorstore:index" ,
188
188
"//tensorstore:rank" ,
189
- "//tensorstore/internal:gdb_scripting " ,
189
+ "//tensorstore/internal:lldb_scripting " ,
190
190
"//tensorstore/internal/meta" ,
191
191
"//tensorstore/internal/meta:type_traits" ,
192
192
"//tensorstore/util:span" ,
Original file line number Diff line number Diff line change 24
24
#include < utility>
25
25
26
26
#include " tensorstore/internal/container/multi_vector_impl.h" // IWYU pragma: export
27
- #include " tensorstore/internal/gdb_scripting .h"
27
+ #include " tensorstore/internal/lldb_scripting .h"
28
28
#include " tensorstore/internal/meta/meta.h"
29
29
#include " tensorstore/internal/meta/type_traits.h"
30
30
#include " tensorstore/rank.h"
Original file line number Diff line number Diff line change 20
20
#include < cassert>
21
21
22
22
#include " tensorstore/index.h"
23
- #include " tensorstore/internal/gdb_scripting .h"
23
+ #include " tensorstore/internal/lldb_scripting .h"
24
24
#include " tensorstore/internal/meta/meta.h"
25
25
#include " tensorstore/internal/meta/type_traits.h"
26
26
#include " tensorstore/rank.h"
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
- #ifndef TENSORSTORE_INTERNAL_GDB_SCRIPTING_H_
16
- #define TENSORSTORE_INTERNAL_GDB_SCRIPTING_H_
17
-
18
- // GDB script registration not supported.
19
- #define TENSORSTORE_GDB_AUTO_SCRIPT (name ) // noop
15
+ #ifndef TENSORSTORE_INTERNAL_LLDB_SCRIPTING_H_
16
+ #define TENSORSTORE_INTERNAL_LLDB_SCRIPTING_H_
20
17
21
18
// LLDB script registration not supported.
22
19
#define TENSORSTORE_LLDB_AUTO_SCRIPT (name ) // noop
23
20
24
- #endif // TENSORSTORE_INTERNAL_GDB_SCRIPTING_H_
21
+ #endif // TENSORSTORE_INTERNAL_LLDB_SCRIPTING_H_
Original file line number Diff line number Diff line change 38
38
#include " tensorstore/index.h"
39
39
#include " tensorstore/internal/container/multi_vector.h"
40
40
#include " tensorstore/internal/container/multi_vector_view.h"
41
- #include " tensorstore/internal/gdb_scripting .h"
41
+ #include " tensorstore/internal/lldb_scripting .h"
42
42
#include " tensorstore/internal/meta/attributes.h"
43
43
#include " tensorstore/internal/meta/type_traits.h"
44
44
#include " tensorstore/rank.h"
Original file line number Diff line number Diff line change @@ -571,7 +571,7 @@ tensorstore_cc_library(
571
571
name = "span" ,
572
572
hdrs = ["span.h" ],
573
573
deps = [
574
- "//tensorstore/internal:gdb_scripting " ,
574
+ "//tensorstore/internal:lldb_scripting " ,
575
575
"//tensorstore/internal/meta:attributes" ,
576
576
"@abseil-cpp//absl/base:core_headers" ,
577
577
"@abseil-cpp//absl/log:absl_log" ,
Original file line number Diff line number Diff line change 29
29
#include " absl/base/attributes.h"
30
30
#include " absl/base/optimization.h"
31
31
#include " absl/log/absl_log.h"
32
- #include " tensorstore/internal/gdb_scripting .h"
32
+ #include " tensorstore/internal/lldb_scripting .h"
33
33
#include " tensorstore/internal/meta/attributes.h"
34
34
35
35
TENSORSTORE_LLDB_AUTO_SCRIPT (" span_lldb.py" )
You can’t perform that action at this time.
0 commit comments