aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/re2/ya.make
blob: f270a88e14fd8819ec8002d4706643245e45cb12 (plain) (blame)
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
# Generated by devtools/yamaker from nixpkgs 24.05.

LIBRARY()

LICENSE(
    BSD-3-Clause AND
    X11-Lucent
)

LICENSE_TEXTS(.yandex_meta/licenses.list.txt)

VERSION(2024-07-02)

ORIGINAL_SOURCE(https://github.com/google/re2/archive/2024-07-02.tar.gz)

PEERDIR(
    contrib/restricted/abseil-cpp/absl/base
    contrib/restricted/abseil-cpp/absl/container
    contrib/restricted/abseil-cpp/absl/hash
    contrib/restricted/abseil-cpp/absl/log
    contrib/restricted/abseil-cpp/absl/strings
    contrib/restricted/abseil-cpp/absl/synchronization
    library/cpp/sanitizer/include
)

ADDINCL(
    GLOBAL contrib/libs/re2/include
    contrib/libs/re2
)

NO_COMPILER_WARNINGS()

IF (WITH_VALGRIND)
    CFLAGS(
        GLOBAL -DRE2_ON_VALGRIND
    )
ENDIF()

SRCS(
    re2/bitmap256.cc
    re2/bitstate.cc
    re2/compile.cc
    re2/dfa.cc
    re2/filtered_re2.cc
    re2/mimics_pcre.cc
    re2/nfa.cc
    re2/onepass.cc
    re2/parse.cc
    re2/perl_groups.cc
    re2/prefilter.cc
    re2/prefilter_tree.cc
    re2/prog.cc
    re2/re2.cc
    re2/regexp.cc
    re2/set.cc
    re2/simplify.cc
    re2/tostring.cc
    re2/unicode_casefold.cc
    re2/unicode_groups.cc
    util/rune.cc
    util/strutil.cc
)

END()

RECURSE(
    re2/testing
)