forked from kevinburke/twilio-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
113 lines (108 loc) · 3 KB
/
BUILD.bazel
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
load("@io_bazel_rules_go//go:def.bzl", "gazelle", "go_library", "go_prefix", "go_test")
gazelle(
name = "gazelle",
prefix = "github.com/kevinburke/twilio-go",
)
go_prefix("github.com/kevinburke/twilio-go")
go_library(
name = "go_default_library",
srcs = [
"accounts.go",
"alert_descriptions.go",
"alerts.go",
"applications.go",
"available_phone_numbers.go",
"calls.go",
"codes.go",
"conferences.go",
"doc.go",
"fax.go",
"http.go",
"http_ctx.go",
"http_noctx.go",
"keys.go",
"lookup.go",
"media.go",
"media_go17.go",
"media_goprevious.go",
"messages.go",
"notify.go",
"notify_credentials.go",
"outgoingcallerids.go",
"page.go",
"participants.go",
"phonenumbers.go",
"prices_messaging.go",
"prices_number.go",
"prices_voice.go",
"queue.go",
"recording.go",
"room.go",
"transcription.go",
"types.go",
"validation.go",
"video_recording.go",
"wireless.go",
"wireless_commands.go",
],
importpath = "github.com/kevinburke/twilio-go",
visibility = ["//visibility:public"],
deps = [
"@com_github_kevinburke_go_types//:go_default_library",
"@com_github_kevinburke_rest//:go_default_library",
"@com_github_ttacon_libphonenumber//:go_default_library",
"@org_golang_x_net//context:go_default_library",
"@org_golang_x_sync//errgroup:go_default_library",
],
)
go_test(
name = "go_default_test",
timeout = "short",
srcs = [
"accounts_test.go",
"alerts_test.go",
"applications_test.go",
"available_phone_numbers_test.go",
"calls_test.go",
"conferences_test.go",
"fax_test.go",
"http_test.go",
"lookup_test.go",
"media_test.go",
"messages_test.go",
"notify_credentials_test.go",
"outgoingcallerids_test.go",
"phonenumbers_test.go",
"prices_messaging_test.go",
"prices_number_test.go",
"prices_voice_test.go",
"recording_test.go",
"responses_test.go",
"room_test.go",
"transcription_test.go",
"types_test.go",
"validation_test.go",
"video_recording_test.go",
"wireless_commands_test.go",
"wireless_test.go",
],
embed = [":go_default_library"],
importpath = "github.com/kevinburke/twilio-go",
deps = ["@com_github_kevinburke_rest//:go_default_library"],
)
go_test(
name = "go_default_xtest",
timeout = "short",
srcs = [
"alerts_example_test.go",
"example_messages_test.go",
"example_numbers_test.go",
"example_test.go",
"wireless_example_test.go",
],
importpath = "github.com/kevinburke/twilio-go_test",
deps = [
":go_default_library",
"@com_github_kevinburke_rest//:go_default_library",
],
)