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
|
{ "gtest":
{ "type": ["@", "rules", "CC/foreign/cmake", "library"]
, "name": ["gtest"]
, "version": ["1", "13", "0"]
, "project": [["@", "googletest", "", "tree"]]
, "out_hdr_dirs": ["gtest"]
, "out_libs": ["libgtest.a"]
, "pkg-config": ["gtest.pc"]
}
, "testlib":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["testlib"]
, "shared": ["yes"]
, "srcs": ["main.cpp"]
, "private-deps": ["gtest"]
}
, "test":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["test"]
, "private-deps": ["testlib", "gtest"]
}
, "gtest_main":
{ "type": ["@", "rules", "CC/foreign/cmake", "library"]
, "name": ["gtest_main"]
, "version": ["1", "13", "0"]
, "project": [["@", "googletest", "", "tree"]]
, "defines": ["BUILD_SHARED_LIBS=ON"]
, "out_hdr_dirs": ["gtest"]
, "out_libs": ["libgtest_main.so.1.13.0", "libgtest.so.1.13.0"]
, "pkg-config": ["gtest_main.pc", "gtest.pc"]
}
, "testbin":
{ "type": ["@", "rules", "CC", "binary"]
, "name": ["test"]
, "srcs": ["test.cpp"]
, "private-deps": ["gtest_main"]
}
, "shell_test":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["shell_test"]
, "test": ["test.sh"]
, "deps": ["testbin"]
}
, "install_gtest":
{"type": ["@", "rules", "CC", "install-with-deps"], "targets": ["gtest"]}
, "install_gtest_main":
{ "type": ["@", "rules", "CC", "install-with-deps"]
, "targets": ["gtest_main"]
}
, "install_testbin":
{"type": ["@", "rules", "CC", "install-with-deps"], "targets": ["testbin"]}
, "libz":
{ "type": ["@", "rules", "CC/foreign/cmake", "library"]
, "name": ["libz"]
, "version": ["1", "2", "13"]
, "project": [["@", "libz", "", "tree"]]
, "defines": ["BUILD_SHARED_LIBS=ON"]
, "out_hdrs": ["zconf.h", "zlib.h"]
, "out_libs": ["libz.so", "libz.so.1", "libz.so.1.2.13"]
, "pc_prefix": ["share/pkgconfig"]
, "pkg-config": ["zlib.pc"]
}
, "libcurl":
{ "type": ["@", "rules", "CC/foreign/cmake", "library"]
, "name": ["libcurl"]
, "version": ["8", "0", "1"]
, "project": [["@", "libcurl", "", "tree"]]
, "defines": ["BUILD_SHARED_LIBS=ON", "CURL_ENABLE_SSL=OFF", "USE_ZLIB=ON"]
, "out_hdr_dirs": ["curl"]
, "out_libs": ["libcurl.so.4.8.0"]
, "pkg-config": ["libcurl.pc"]
, "deps": ["libz"]
}
, "install_libcurl":
{"type": ["@", "rules", "CC", "install-with-deps"], "targets": ["libcurl"]}
}
|