-
Notifications
You must be signed in to change notification settings - Fork 44
/
glean.cabal.in
2411 lines (2242 loc) · 62.7 KB
/
glean.cabal.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
cabal-version: 3.6
-- Copyright (c) Facebook, Inc. and its affiliates.
name: glean
version: 0.1.0.0
synopsis: A system for collecting, deriving and working with facts
about source code.
homepage: https://github.com/facebookincubator/Glean
bug-reports: https://github.com/facebookincubator/Glean/issues
license: BSD-3-Clause
license-file: LICENSE
author: Facebook, Inc.
maintainer: Glean-team@fb.com
copyright: (c) Facebook, All Rights Reserved
build-type: Simple
extra-source-files: CHANGELOG.md
CXX_EXTRA_SOURCE_FILES
common fb-haskell
default-language: Haskell2010
default-extensions:
BangPatterns
BinaryLiterals
DataKinds
DeriveDataTypeable
DeriveGeneric
EmptyCase
ExistentialQuantification
FlexibleContexts
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
LambdaCase
MultiParamTypeClasses
MultiWayIf
NamedFieldPuns
NoMonomorphismRestriction
OverloadedStrings
PatternSynonyms
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeFamilies
TypeSynonymInstances
NondecreasingIndentation
ghc-options: -Wall -Wno-orphans -Wno-name-shadowing
if flag(opt)
ghc-options: -O2
common fb-cpp
cxx-options: -std=c++17
if !flag(clang)
cxx-options: -fcoroutines
if arch(x86_64)
cxx-options: -march=haswell
if flag(opt)
cxx-options: -O3 -DNDEBUG
cxx-options: -O3
CXX_EXTRA_LIB_DIRS
common exe
ghc-options: -threaded
flag clang
default: False
flag opt
default: False
flag benchmarks
default: False
-- run tests that require clang
flag clang-tests
default: True
-- run tests that require hhvm, typically Linux/x86_64
flag hack-tests
default: True
-- run tests that require lsif-tsc
flag typescript-tests
default: True
-- run tests that require python-scip
flag python-tests
default: True
-- run tests that require dotnet-scip
flag dotnet-tests
default: True
-- run tests that require lsif-go
flag go-tests
default: False
-- run tests that require rust-analyzer
flag rust-tests
default: True
-- run tests that require lsif-java
flag java-lsif-tests
default: False
-- run tests that require flow
flag flow-tests
default: True
-- use fbthrift as the the server/client transport, or HTTP?
flag fbthrift
default: False
common deps
build-depends:
fb-util,
thrift-lib,
HUnit,
safe,
safe-exceptions,
scientific,
text-show,
uuid,
extra,
aeson,
data-default,
temporary,
clock,
STMonadTrans,
utf8-string,
optparse-applicative,
ansi-terminal,
json,
random,
regex-base,
regex-pcre,
ghc-prim,
base >=4.11.1 && <4.15,
array ^>=0.5.2.0,
async ^>=2.2.1,
attoparsec ^>=0.13.2.3,
unordered-containers ^>=0.2.9.0,
containers,
contravariant ^>=1.5,
text ^>=1.2.3.0,
bytestring ^>=0.10.8.2,
vector ^>=0.12.0.1,
transformers ^>=0.5.6.2,
network-uri ^>=2.6.1.0,
stm ^>=2.5.0.0,
directory ^>=1.3.1.5,
filepath ^>=1.4.2,
exceptions ^>=0.10.0,
mtl ^>=2.2.2,
unix ^>=2.7.2.2,
process ^>=1.6.3.0,
prettyprinter >=1.2.1 && <1.7,
time >=1.8.0.2 && <1.12,
binary ^>=0.8.5.1,
deepseq ^>=1.4.3.0,
hashable >=1.2.7.0 && <1.4,
tar ^>=0.5.1.0,
ghc-prim >=0.5.2.0 && <0.7,
parsec ^>=3.1.13.0,
haxl >= 2.1.2.0 && < 2.4,
hinotify ^>= 0.4.1
common hsc2hs-cpp
hsc2hs-options: --cc=g++ --lflag=-lstdc++ --cflag=-D__HSC2HS__=1 --cflag=-std=c++17
common thrift-server
if flag(fbthrift)
ghc-options: -DFBTHRIFT
build-depends: thrift-server
else
build-depends: thrift-http
common thrift-client
if flag(fbthrift)
ghc-options: -DFBTHRIFT
build-depends: thrift-cpp-channel
else
build-depends: thrift-http
library stubs
import: fb-haskell, fb-cpp, deps, thrift-server
visibility: public
hs-source-dirs: glean/github
exposed-modules:
Facebook.Fb303
Facebook.Service
Glean.BuildInfo
Glean.Datasource.Scribe.Write
Glean.Init
Glean.Server.PublishShards
Glean.Index
Glean.Username
ServiceData.Types
ServiceData.GlobalStats
TestRunner
build-depends:
glean:if-fb303-hs,
glean:if-glean-hs,
glean:if-index-hs,
mangle,
template-haskell
library logger
import: fb-haskell, fb-cpp, deps
visibility: private
hs-source-dirs: glean/github
exposed-modules:
Logger.IO
Logger.GleanGlass
Logger.GleanGlassErrors
build-depends:
glean:util
library config
import: fb-haskell, fb-cpp, deps
visibility: public
include-dirs: .
hs-source-dirs:
glean/config/gen-hs2
glean/config/recipes/gen-hs2
glean/config/server/gen-hs2
glean/config/client/gen-hs2
exposed-modules:
Glean.Recipes.Types
Glean.Service.Types
Glean.ClientConfig.Types
Glean.ServerConfig.Types
pkgconfig-depends: libfolly
library defaultconfigs
import: fb-haskell, fb-cpp, deps
visibility: private
hs-source-dirs: glean/github
exposed-modules:
Glean.DefaultConfigs
build-depends:
glean:config,
glean:util
library thrift-annotation
import: fb-haskell, fb-cpp, deps
visibility: private
hs-source-dirs:
thrift/annotation/gen-hs2
exposed-modules:
Cpp.Types
Hack.Types
Rust.Types
Scope.Types
Thrift.Types
library if-fb303-hs
import: fb-haskell, fb-cpp, deps
visibility: public
hs-source-dirs:
glean/github/if/gen-hs2
exposed-modules:
Fb303Core.Types
Fb303Core.BaseService.Client
Fb303Core.BaseService.Service
Fb303.Types
Fb303.FacebookService.Client
Fb303.FacebookService.Service
build-depends:
glean:thrift-annotation,
library if-glean-hs
import: fb-haskell, fb-cpp, deps
visibility: public
hs-source-dirs:
glean/if/gen-hs2
exposed-modules:
Glean.Types
Glean.GleanService.Client
Glean.GleanService.Service
build-depends:
glean:thrift-annotation,
glean:config,
glean:if-fb303-hs
library if-index-hs
import: fb-haskell, deps
visibility: public
hs-source-dirs:
glean/if/index/gen-hs2
exposed-modules:
Glean.Index.Types
Glean.Index.GleanIndexingService.Client
Glean.Index.GleanIndexingService.Service
build-depends:
glean:if-glean-hs
library if-internal-hs
import: fb-haskell, fb-cpp, deps
visibility: public
hs-source-dirs:
glean/if/internal/gen-hs2
exposed-modules:
Glean.Internal.Types
build-depends:
glean:config,
glean:if-glean-hs
library rts
import: fb-haskell, fb-cpp, deps
visibility: public
include-dirs: .
CXX_LIB_glean_cpp_rts
-- __atomic_is_lock_free missing with clang
extra-libraries: atomic
pkgconfig-depends: libfolly, libunwind, libglog, icu-uc, gflags, libxxhash
library rocksdb
import: fb-haskell, fb-cpp, deps
visibility: private
CXX_LIB_glean_cpp_rocksdb
pkgconfig-depends: rocksdb
build-depends:
glean:rocksdb-stats,
glean:rts,
-- This needs to be separate from rocksdb because it can't be compiled with -fno-rtti
library rocksdb-stats
import: fb-haskell, fb-cpp, deps
visibility: private
CXX_LIB_glean_cpp_rocksdb_stats
build-depends:
glean:rts,
library util
import: fb-haskell, fb-cpp, deps, thrift-client
visibility: public
hs-source-dirs: glean/util
exposed-modules:
Glean.Impl.ThriftService
Glean.Impl.ConfigProvider
Glean.Impl.TestConfigProvider
Glean.Util.Bisect
Glean.Util.ConfigProvider
Glean.Util.Cacher
Glean.Util.Disk
Glean.Util.HKD
Glean.Util.IO
Glean.Util.Metric
Glean.Util.Mutex
Glean.Util.Observed
Glean.Util.Periodic
Glean.Util.Process
Glean.Util.RetryRecvTimeout
Glean.Util.RetryChannelException
Glean.Util.Service
Glean.Util.ShardManager
Glean.Util.Some
Glean.Util.ThriftService
Glean.Util.ThriftSource
Glean.Util.Throttle
Glean.Util.TransitiveClosure
Glean.Util.Trace
Glean.Util.ValueBuffer
Glean.Util.Warden
build-depends:
glean:stubs,
glean:config,
glean:if-glean-hs,
primitive,
network
library core
import: fb-haskell, fb-cpp, deps, hsc2hs-cpp
visibility: public
hs-source-dirs: glean/hs
default-extensions: CPP
hsc2hs-options: --cflag=-DOSS=1
exposed-modules:
Glean.FFI
Glean.RTS
Glean.RTS.Builder
Glean.RTS.Bytecode.Code
Glean.RTS.Bytecode.Disassemble
Glean.RTS.Bytecode.Supply
Glean.RTS.Constants
Glean.RTS.Foreign.Benchmarking
Glean.RTS.Foreign.Bytecode
Glean.RTS.Foreign.Define
Glean.RTS.Foreign.FactSet
Glean.RTS.Foreign.Inventory
Glean.RTS.Foreign.JSON
Glean.RTS.Foreign.LookupCache
Glean.RTS.Foreign.Lookup
Glean.RTS.Foreign.Ownership
Glean.RTS.Foreign.Query
Glean.RTS.Foreign.Stacked
Glean.RTS.Foreign.Stats
Glean.RTS.Foreign.Subst
Glean.RTS.Foreign.Thrift
Glean.RTS.Foreign.Typecheck
Glean.RTS.Term
Glean.RTS.Traverse
Glean.RTS.Typecheck
Glean.RTS.Types
-- generated by bytecode-gen-hs
Glean.RTS.Bytecode.Gen.Instruction
Glean.RTS.Bytecode.Gen.Issue
Glean.RTS.Bytecode.Gen.Version
Glean.Typed
Glean.Typed.Binary
Glean.Typed.Build
Glean.Typed.BuildFact
Glean.Typed.Fact
Glean.Typed.Id
Glean.Typed.Predicate
Glean.Typed.Prim
Glean.Typed.Query
Glean.Query.Thrift
Glean.Query.Thrift.Internal
Glean.Write.Async
Glean.Write.Options
Glean.Write.SendBatch
Glean.Write.SendQueue
Glean.Write.SendAndRebaseQueue
Glean.Write.Stats
Glean.Angle.Hash
Glean.Angle.Lexer
Glean.Angle.Parser
Glean.Angle.Types
Glean.Display
Glean.Query.Angle
Glean.Repo.Text
Glean.Schema.Resolve
Glean.Schema.Evolve
Glean.Schema.Types
Glean.Schema.Util
Glean.Backend.Types
Glean.Backend.Retry
Glean.Util.PredMap
Glean.Util.PredSet
build-tool-depends: alex:alex, happy:happy
build-depends:
glean:bytecode,
glean:config,
glean:defaultconfigs,
glean:util,
glean:if-glean-hs,
glean:if-internal-hs,
glean:rts,
glean:stubs,
glean:rocksdb,
library db
import: fb-haskell, fb-cpp, deps, hsc2hs-cpp
visibility: public
hs-source-dirs: glean/db
default-extensions: CPP
exposed-modules:
Glean.Database.Backup
Glean.Database.Backup.Backend
Glean.Database.Backup.Locator
Glean.Database.Backup.Mock
Glean.Database.Catalog.Filter
Glean.Database.Catalog
Glean.Database.Catalog.Local.Files
Glean.Database.Catalog.Local.Memory
Glean.Database.Catalog.Store
Glean.Database.CompletePredicates
Glean.Database.Config
Glean.Database.Data
Glean.Database.Env
Glean.Database.Exception
Glean.Database.Open
Glean.Database.Close
Glean.Database.Restore
Glean.Database.Delete
Glean.Database.Create
Glean.Database.List
Glean.Database.Janitor
Glean.Database.Logger
Glean.Database.Meta
Glean.Database.Ownership
Glean.Database.PredicateStats
Glean.Database.Repo
Glean.Database.Retention
Glean.Database.Schema
Glean.Database.Schema.ComputeIds
Glean.Database.Schema.Types
Glean.Database.Storage
Glean.Database.Storage.Memory
Glean.Database.Storage.RocksDB
Glean.Database.Trace
Glean.Database.Types
Glean.Database.Validate
Glean.Database.Work.Controller
Glean.Database.Work.Heartbeat
Glean.Database.Work
Glean.Database.Work.Queue
Glean.Database.Writes
Glean.Database.Write.Batch
Glean.Logger.Database
Glean.Logger.Server
Glean.Write.JSON
Glean.Query.BindOrder
Glean.Query.Codegen
Glean.Query.Codegen.Types
Glean.Query.Transform
Glean.Query.Expand
Glean.Query.Flatten
Glean.Query.Flatten.Types
Glean.Query.Opt
Glean.Query.Prune
Glean.Query.Reorder
Glean.Query.Typecheck
Glean.Query.Typecheck.Monad
Glean.Query.Typecheck.Types
Glean.Query.Typecheck.Unify
Glean.Query.Vars
Glean.Query.JSON
Glean.Query.Derive
Glean.Query.UserQuery
Glean.Query.Incremental
Glean.Backend.Local
Glean.Backend.Logging
Glean.Dump
Glean.Logger
build-depends:
split,
glean:bytecode,
glean:config,
glean:core,
glean:defaultconfigs,
glean:haxl-datasource,
glean:util,
glean:if-glean-hs,
glean:if-internal-hs,
glean:rts,
glean:stubs,
glean:rocksdb,
library client-hs
import: fb-haskell, fb-cpp, deps
visibility: public
hs-source-dirs: glean/client/hs
CXX_LIB_glean_client_hs
exposed-modules:
Glean
Glean.Angle
Glean.Write
Glean.Haxl
Glean.Remote
Glean.Repo
Glean.Haxl.Repos
Glean.Util.ShellPrint
build-depends:
pretty,
aeson-pretty,
mangle,
glean:if-glean-hs,
glean:util,
glean:core,
glean:config,
glean:defaultconfigs,
glean:haxl-datasource,
glean:stubs,
prettyprinter-ansi-terminal,
thrift-haxl,
process-extras
library client-hs-local
import: fb-haskell, fb-cpp, deps
visibility: public
hs-source-dirs: glean/client/hs/local
exposed-modules:
Glean.LocalOrRemote
build-depends:
glean:if-glean-hs,
glean:core,
glean:client-hs,
glean:db,
glean:defaultconfigs,
glean:util,
-- things needed by glean-clang
library client-cpp
import: fb-cpp, deps
visibility: public
CXX_LIB_glean_cpp_client
include-dirs: .
install-includes:
glean/cpp/glean.h
build-depends:
glean:rts
library interprocess
import: fb-haskell, deps
visibility: public
hs-source-dirs: glean/interprocess/hs
exposed-modules:
Glean.Interprocess.Counters
Glean.Interprocess.Worklist
build-depends:
glean:client-cpp
library schema
import: fb-haskell, fb-cpp, deps
visibility: public
hs-source-dirs:
glean/schema/hs
glean/schema/thrift/gen-hs2
exposed-modules:
Glean.Schema.Buck
Glean.Schema.Builtin
Glean.Schema.Code
Glean.Schema.CodeCsharp
Glean.Schema.CodeCxx
Glean.Schema.CodeDataswarm
Glean.Schema.CodeErlang
Glean.Schema.CodeGraphql
Glean.Schema.CodeHack
Glean.Schema.CodeHs
Glean.Schema.CodeJava
Glean.Schema.CodeKotlin
Glean.Schema.CodeLsif
Glean.Schema.Codemarkup
Glean.Schema.CodemarkupBuck
Glean.Schema.CodemarkupCsharp
Glean.Schema.CodemarkupCxx
Glean.Schema.CodemarkupDataswarm
Glean.Schema.CodemarkupErlang
Glean.Schema.CodemarkupFlow
Glean.Schema.CodemarkupGraphql
Glean.Schema.CodemarkupHack
Glean.Schema.CodemarkupHaskell
Glean.Schema.CodemarkupLsif
Glean.Schema.CodemarkupPp
Glean.Schema.CodemarkupPython
Glean.Schema.CodemarkupScip
Glean.Schema.CodemarkupSearch
Glean.Schema.CodemarkupTypes
Glean.Schema.CodePp
Glean.Schema.CodePython
Glean.Schema.CodeBuck
Glean.Schema.Csharp
Glean.Schema.Cxx1
Glean.Schema.Digest
Glean.Schema.Dataswarm
Glean.Schema.Glass
Glean.Schema.Erlang
Glean.Schema.Flow
Glean.Schema.GleanTest
Glean.Schema.Graphql
Glean.Schema.Hack
Glean.Schema.Hs
Glean.Schema.JavakotlinAlpha
Glean.Schema.KotlinAlpha
Glean.Schema.Lsif
Glean.Schema.Pp1
Glean.Schema.Python
Glean.Schema.SearchBuck
Glean.Schema.SearchCode
Glean.Schema.SearchCxx
Glean.Schema.SearchErlang
Glean.Schema.SearchHack
Glean.Schema.SearchHs
Glean.Schema.SearchPp
Glean.Schema.Src
Glean.Schema.Sys
Glean.Schema.Buck.Types
Glean.Schema.Builtin.Types
Glean.Schema.CodeBuck.Types
Glean.Schema.CodeCsharp.Types
Glean.Schema.CodeCxx.Types
Glean.Schema.CodeDataswarm.Types
Glean.Schema.CodeErlang.Types
Glean.Schema.CodeFlow.Types
Glean.Schema.CodeGraphql.Types
Glean.Schema.CodeHack.Types
Glean.Schema.CodeHs.Types
Glean.Schema.CodeJava.Types
Glean.Schema.CodeKotlin.Types
Glean.Schema.CodeLsif.Types
Glean.Schema.CodemarkupBuck.Types
Glean.Schema.CodemarkupCsharp.Types
Glean.Schema.CodemarkupCxx.Types
Glean.Schema.CodemarkupDataswarm.Types
Glean.Schema.CodemarkupErlang.Types
Glean.Schema.CodemarkupFlow.Types
Glean.Schema.CodemarkupGraphql.Types
Glean.Schema.CodemarkupHack.Types
Glean.Schema.CodemarkupHaskell.Types
Glean.Schema.CodemarkupLsif.Types
Glean.Schema.CodemarkupPp.Types
Glean.Schema.CodemarkupPython.Types
Glean.Schema.CodemarkupScip.Types
Glean.Schema.CodemarkupSearch.Types
Glean.Schema.Codemarkup.Types
Glean.Schema.CodemarkupTypes.Types
Glean.Schema.CodePp.Types
Glean.Schema.CodePython.Types
Glean.Schema.CodeScip.Types
Glean.Schema.CodeFbthrift.Types
Glean.Schema.Code.Types
Glean.Schema.Csharp.Types
Glean.Schema.Cxx1.Types
Glean.Schema.Dataswarm.Types
Glean.Schema.Digest.Types
Glean.Schema.Erlang.Types
Glean.Schema.Flow.Types
Glean.Schema.Glass.Types
Glean.Schema.GleanTest.Types
Glean.Schema.Graphql.Types
Glean.Schema.Hack.Types
Glean.Schema.Hs.Types
Glean.Schema.JavaAlpha.Types
Glean.Schema.JavakotlinAlpha.Types
Glean.Schema.KotlinAlpha.Types
Glean.Schema.Lsif.Types
Glean.Schema.LsifTypes.Types
Glean.Schema.Scip.Types
Glean.Schema.Pp1.Types
Glean.Schema.Python.Types
Glean.Schema.SearchBuck.Types
Glean.Schema.SearchCode.Types
Glean.Schema.SearchCxx.Types
Glean.Schema.SearchErlang.Types
Glean.Schema.SearchHack.Types
Glean.Schema.SearchHs.Types
Glean.Schema.SearchPp.Types
Glean.Schema.Src.Types
Glean.Schema.SymbolidCxx.Types
Glean.Schema.SymbolidJava.Types
Glean.Schema.SymbolidKotlin.Types
Glean.Schema.Sys.Types
Glean.Schema.Fbthrift.Types
build-depends:
glean:if-glean-hs,
glean:config,
glean:core,
glean:thrift-annotation
-- library clang-test-xref
-- import: fb-haskell, fb-cpp, deps
-- visibility: public
-- hs-source-dirs: lang/clang
-- exposed-modules:
-- Glean.Clang.Test.XRef
library haxl-datasource
import: fb-haskell, fb-cpp, deps
hs-source-dirs: glean/haxl
exposed-modules:
Haxl.DataSource.Glean
Haxl.DataSource.Glean.Common
build-depends:
glean:config,
glean:core,
glean:if-glean-hs,
glean:util,
thrift-haxl
executable gen-schema
import: fb-haskell, fb-cpp, deps, exe
main-is: Glean/Schema/Gen/Main.hs
hs-source-dirs: glean/schema/gen
ghc-options: -main-is Glean.Schema.Gen.Main
other-modules:
Glean.Schema.Gen.HackJson,
Glean.Schema.Gen.Utils,
Glean.Schema.Gen.Cpp,
Glean.Schema.Gen.Haskell,
Glean.Schema.Gen.OCaml,
Glean.Schema.Gen.Python,
Glean.Schema.Gen.Thrift
build-depends:
glean:core,
glean:db,
glean:config,
glean:if-glean-hs,
glean:if-internal-hs,
aeson-pretty,
fuzzy
library bytecode-instruction
import: fb-haskell, fb-cpp, deps
visibility: private
hs-source-dirs: glean/bytecode/def
exposed-modules:
Glean.Bytecode.Generate.Instruction
build-depends:
glean:bytecode
library bytecode
import: fb-haskell, fb-cpp, deps
visibility: private
hs-source-dirs: glean/bytecode
exposed-modules:
Glean.Bytecode.Types
Glean.Bytecode.Decode
Glean.Bytecode.SysCalls
executable gen-bytecode-cpp
import: fb-haskell, fb-cpp, deps, exe
main-is: Glean/Bytecode/Generate/Cpp.hs
hs-source-dirs: glean/bytecode/gen
ghc-options: -main-is Glean.Bytecode.Generate.Cpp
build-depends:
glean:bytecode,
glean:bytecode-instruction
executable gen-bytecode-hs
import: fb-haskell, fb-cpp, deps, exe
main-is: Glean/Bytecode/Generate/Haskell.hs
hs-source-dirs: glean/bytecode/gen
ghc-options: -main-is Glean.Bytecode.Generate.Haskell
build-depends:
glean:bytecode,
glean:bytecode-instruction
library lib
import: fb-haskell, fb-cpp, deps
visibility: public
hs-source-dirs: glean/lib
exposed-modules:
Glean.Derive
Glean.Util.CxxXRef
Glean.Util.Declarations
Glean.Util.URI
Glean.Util.Range
Glean.Util.ToAngle
Glean.Util.XRefs
Glean.Util.Same
Glean.Util.ShowSchemaId
Glean.Write.SimpleAsync
build-depends:
glean:client-hs,
glean:core,
glean:db,
glean:if-glean-hs,
glean:schema,
glean:util,
split
executable disassemble
import: fb-haskell, fb-cpp, deps
hs-source-dirs: glean/tools/disassemble
main-is: Disassemble.hs
ghc-options: -main-is Disassemble
extra-libraries: stdc++
build-depends:
glean:db,
glean:core,
glean:if-glean-hs,
glean:lib,
glean:util,
library test-unit
import: fb-haskell, fb-cpp, deps
hs-source-dirs: glean/test/unit
exposed-modules:
Glean.Test.HUnit
Glean.Test.Mock
-- Stub for regression tests
library handler
import: fb-haskell, fb-cpp, deps
hs-source-dirs: glean/server
exposed-modules:
Glean.Handler
build-depends:
glean:client-hs,
glean:if-fb303-hs,
glean:if-glean-hs,
glean:stubs,
glean:db,
glean:config,
executable glean-server
import: fb-haskell, fb-cpp, deps, exe, thrift-server
hs-source-dirs: glean/server
main-is: Glean/Server.hs
ghc-options: -main-is Glean.Server
default-extensions: CPP
other-modules:
Glean.Handler
Glean.Server.Config
Glean.Server.Sharding
extra-libraries: stdc++
build-depends:
glean:client-hs,
glean:if-fb303-hs,
glean:if-glean-hs,
glean:if-index-hs,
glean:stubs,
glean:config,
glean:core,
glean:db,
glean:util,
haskeline >=0.7.3 && <0.8,
json
library shell-lib
import: fb-haskell, fb-cpp, deps
hs-source-dirs: glean/shell
exposed-modules:
Glean.Shell
Glean.Shell.Error
Glean.Shell.Index
Glean.Shell.Terminal
Glean.Shell.Types
default-extensions: CPP
extra-libraries: stdc++
build-depends:
glean:cli-types,
glean:if-glean-hs,
glean:stubs,
glean:config,
glean:core,
glean:db,
glean:client-hs,
glean:client-hs-local,
glean:indexers,
glean:util,
glean:lsif,
haskeline >=0.7.3 && <0.8,
json,
monad-control,
prettyprinter-ansi-terminal,
split
library indexers
import: fb-haskell, fb-cpp, deps, thrift-server
hs-source-dirs:
glean/lang/clang
glean/lang/flow
glean/lang/go
glean/lang/hack
glean/lang/haskell
glean/lang/java-lsif
glean/lang/lsif/indexer
glean/lang/scip/indexer
glean/lang/python-scip
glean/lang/dotnet-scip
glean/lang/rust-lsif
glean/lang/rust-scip
glean/lang/typescript
glean/index
glean/index/list
exposed-modules:
Glean.Indexer
Glean.Indexer.Cpp
Glean.Indexer.External
Glean.Indexer.Flow
Glean.Indexer.Go
Glean.Indexer.Hack
Glean.Indexer.Haskell
Glean.Indexer.JavaLsif
Glean.Indexer.LSIF
Glean.Indexer.SCIP
Glean.Indexer.RustLsif
Glean.Indexer.RustScip
Glean.Indexer.Typescript
Glean.Indexer.PythonScip
Glean.Indexer.DotnetScip
Glean.Indexer.List
build-depends:
glean:client-hs,
glean:client-hs-local,
glean:db,
glean:handler,
glean:interprocess,
glean:lib,
glean:lsif,
glean:scip,
glean:stubs,
glean:util
library cli-types
import: fb-haskell, fb-cpp, deps
hs-source-dirs: glean/tools/gleancli/plugin
exposed-modules: