File tree Expand file tree Collapse file tree 4 files changed +21
-19
lines changed
utils/bazel/llvm-project-overlay Expand file tree Collapse file tree 4 files changed +21
-19
lines changed Original file line number Diff line number Diff line change 2
2
# See https://llvm.org/LICENSE.txt for license information.
3
3
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
4
5
- package (default_visibility = ["//visibility:public" ],
6
- features = ["layering_check" ])
5
+ package (
6
+ default_visibility = ["//visibility:public" ],
7
+ features = ["layering_check" ],
8
+ )
7
9
8
10
licenses (["notice" ])
9
11
@@ -17,33 +19,33 @@ cc_library(
17
19
"Protocol.cpp" ,
18
20
"URI.cpp" ,
19
21
"index/SymbolID.cpp" ,
22
+ "support/Cancellation.cpp" ,
23
+ "support/Context.cpp" ,
20
24
"support/Logger.cpp" ,
21
- "support/Trace.cpp" ,
22
25
"support/MemoryTree.cpp" ,
23
- "support/Context.cpp" ,
24
- "support/Cancellation.cpp" ,
25
- "support/ThreadCrashReporter.cpp" ,
26
26
"support/Shutdown.cpp" ,
27
+ "support/ThreadCrashReporter.cpp" ,
28
+ "support/Trace.cpp" ,
27
29
],
28
30
hdrs = [
29
- "Transport .h" ,
31
+ "LSPBinder .h" ,
30
32
"Protocol.h" ,
33
+ "Transport.h" ,
31
34
"URI.h" ,
32
- "LSPBinder.h" ,
33
35
"index/SymbolID.h" ,
34
- "support/Function.h" ,
35
36
"support/Cancellation.h" ,
36
- "support/ThreadCrashReporter.h" ,
37
+ "support/Context.h" ,
38
+ "support/Function.h" ,
37
39
"support/Logger.h" ,
38
- "support/Trace.h" ,
39
40
"support/MemoryTree.h" ,
40
- "support/Context.h" ,
41
41
"support/Shutdown.h" ,
42
+ "support/ThreadCrashReporter.h" ,
43
+ "support/Trace.h" ,
42
44
],
43
45
includes = ["." ],
44
46
deps = [
45
- "//llvm:Support" ,
46
47
"//clang:basic" ,
47
48
"//clang:index" ,
49
+ "//llvm:Support" ,
48
50
],
49
51
)
Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ libc_test(
64
64
name = "integer_to_string_test" ,
65
65
srcs = ["integer_to_string_test.cpp" ],
66
66
deps = [
67
- "//libc:__support_cpp_span" ,
68
67
"//libc:__support_cpp_limits" ,
68
+ "//libc:__support_cpp_span" ,
69
69
"//libc:__support_cpp_string_view" ,
70
70
"//libc:__support_integer_literals" ,
71
71
"//libc:__support_integer_to_string" ,
Original file line number Diff line number Diff line change @@ -1936,15 +1936,15 @@ cc_library(
1936
1936
includes = ["include" ],
1937
1937
deps = [
1938
1938
":ArithDialect" ,
1939
- ":ArmNeonIncGen" ,
1940
1939
":ArmNeonDialect" ,
1940
+ ":ArmNeonIncGen" ,
1941
1941
":FuncDialect" ,
1942
1942
":IR" ,
1943
1943
":LLVMDialect" ,
1944
1944
":SideEffectInterfaces" ,
1945
1945
":Support" ,
1946
- ":VectorDialect" ,
1947
1946
":Transforms" ,
1947
+ ":VectorDialect" ,
1948
1948
"//llvm:Core" ,
1949
1949
"//llvm:Support" ,
1950
1950
],
@@ -10962,9 +10962,9 @@ cc_library(
10962
10962
":LinalgStructuredOpsIncGen" ,
10963
10963
":MathDialect" ,
10964
10964
":MemRefDialect" ,
10965
+ ":MeshShardingInterface" ,
10965
10966
":Parser" ,
10966
10967
":SCFDialect" ,
10967
- ":MeshShardingInterface" ,
10968
10968
":SideEffectInterfaces" ,
10969
10969
":SparseTensorDialect" ,
10970
10970
":Support" ,
@@ -11119,12 +11119,12 @@ cc_library(
11119
11119
":MemRefDialect" ,
11120
11120
":MemRefTransforms" ,
11121
11121
":MeshDialect" ,
11122
+ ":MeshShardingInterface" ,
11122
11123
":MeshTransforms" ,
11123
11124
":Pass" ,
11124
11125
":SCFDialect" ,
11125
11126
":SCFTransforms" ,
11126
11127
":SCFUtils" ,
11127
- ":MeshShardingInterface" ,
11128
11128
":SparseTensorDialect" ,
11129
11129
":SubsetOpInterface" ,
11130
11130
":Support" ,
Original file line number Diff line number Diff line change @@ -61,8 +61,8 @@ cc_test(
61
61
deps = [
62
62
"//llvm:Support" ,
63
63
"//llvm:TestingSupport" ,
64
- "//mlir:BytecodeReader" ,
65
64
"//mlir:ArithDialect" ,
65
+ "//mlir:BytecodeReader" ,
66
66
"//mlir:ControlFlowInterfaces" ,
67
67
"//mlir:DLTIDialect" ,
68
68
"//mlir:DataLayoutInterfaces" ,
You can’t perform that action at this time.
0 commit comments