summaryrefslogtreecommitdiff
path: root/src/third_party/protobuf/SConscript
blob: 6149d0e726c6e37d734c24efee0ca61a219af603 (plain)
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
Import('env')

protobuf_env = env.Clone()

protobuf_env.Append(
    CPPDEFINES=[
        'HAVE_CONFIG_H',
        ('HAVE_PTHREAD', '1'),
        ('HAVE_ZLIB', '1'),
        ('PIC', '1'),
    ],
    CCFLAGS=[
        '-Wno-sign-compare',
        '-Wno-overloaded-virtual',
        '-Wno-stringop-overflow',
    ],
)

protobuf_root = protobuf_env.Dir(".").srcnode()
protobuf_platform = protobuf_root.Dir("platform/${TARGET_OS}_${TARGET_ARCH}")
protobuf_env.Append(
    CPPPATH=[
        protobuf_root.Dir("dist"),
        protobuf_root.Dir("dist/src"),
    ],
)

protobuf_env.Library(
    target='protobuf',
    source=[
        "dist/src/google/protobuf/stubs/bytestream.cc",
        "dist/src/google/protobuf/stubs/common.cc",
        "dist/src/google/protobuf/stubs/int128.cc",
        "dist/src/google/protobuf/io/io_win32.cc",
        "dist/src/google/protobuf/stubs/status.cc",
        "dist/src/google/protobuf/stubs/statusor.cc",
        "dist/src/google/protobuf/stubs/stringpiece.cc",
        "dist/src/google/protobuf/stubs/stringprintf.cc",
        "dist/src/google/protobuf/stubs/structurally_valid.cc",
        "dist/src/google/protobuf/stubs/strutil.cc",
        "dist/src/google/protobuf/stubs/time.cc",
        "dist/src/google/protobuf/any_lite.cc",
        "dist/src/google/protobuf/arena.cc",
        "dist/src/google/protobuf/arenastring.cc",
        "dist/src/google/protobuf/generated_enum_util.cc",
        "dist/src/google/protobuf/extension_set.cc",
        "dist/src/google/protobuf/generated_message_util.cc",
        "dist/src/google/protobuf/generated_message_table_driven_lite.cc",
        "dist/src/google/protobuf/implicit_weak_message.cc",
        "dist/src/google/protobuf/map.cc",
        "dist/src/google/protobuf/message_lite.cc",
        "dist/src/google/protobuf/parse_context.cc",
        "dist/src/google/protobuf/repeated_field.cc",
        "dist/src/google/protobuf/wire_format_lite.cc",
        "dist/src/google/protobuf/io/coded_stream.cc",
        "dist/src/google/protobuf/io/strtod.cc",
        "dist/src/google/protobuf/io/zero_copy_stream.cc",
        "dist/src/google/protobuf/io/zero_copy_stream_impl.cc",
        "dist/src/google/protobuf/io/zero_copy_stream_impl_lite.cc",
        "dist/src/google/protobuf/any.pb.cc",
        "dist/src/google/protobuf/api.pb.cc",
        "dist/src/google/protobuf/any.cc",
        "dist/src/google/protobuf/descriptor.cc",
        "dist/src/google/protobuf/descriptor_database.cc",
        "dist/src/google/protobuf/descriptor.pb.cc",
        "dist/src/google/protobuf/duration.pb.cc",
        "dist/src/google/protobuf/dynamic_message.cc",
        "dist/src/google/protobuf/empty.pb.cc",
        "dist/src/google/protobuf/extension_set_heavy.cc",
        "dist/src/google/protobuf/field_mask.pb.cc",
        "dist/src/google/protobuf/generated_message_reflection.cc",
        "dist/src/google/protobuf/generated_message_table_driven.cc",
        "dist/src/google/protobuf/map_field.cc",
        "dist/src/google/protobuf/message.cc",
        "dist/src/google/protobuf/reflection_ops.cc",
        "dist/src/google/protobuf/service.cc",
        "dist/src/google/protobuf/source_context.pb.cc",
        "dist/src/google/protobuf/struct.pb.cc",
        "dist/src/google/protobuf/stubs/substitute.cc",
        "dist/src/google/protobuf/text_format.cc",
        "dist/src/google/protobuf/timestamp.pb.cc",
        "dist/src/google/protobuf/type.pb.cc",
        "dist/src/google/protobuf/unknown_field_set.cc",
        "dist/src/google/protobuf/wire_format.cc",
        "dist/src/google/protobuf/wrappers.pb.cc",
        "dist/src/google/protobuf/io/gzip_stream.cc",
        "dist/src/google/protobuf/io/printer.cc",
        "dist/src/google/protobuf/io/tokenizer.cc",
        "dist/src/google/protobuf/compiler/importer.cc",
        "dist/src/google/protobuf/compiler/parser.cc",
        "dist/src/google/protobuf/util/delimited_message_util.cc",
        "dist/src/google/protobuf/util/field_comparator.cc",
        "dist/src/google/protobuf/util/field_mask_util.cc",
        "dist/src/google/protobuf/util/internal/datapiece.cc",
        "dist/src/google/protobuf/util/internal/default_value_objectwriter.cc",
        "dist/src/google/protobuf/util/internal/error_listener.cc",
        "dist/src/google/protobuf/util/internal/field_mask_utility.cc",
        "dist/src/google/protobuf/util/internal/json_escaping.cc",
        "dist/src/google/protobuf/util/internal/json_objectwriter.cc",
        "dist/src/google/protobuf/util/internal/json_stream_parser.cc",
        "dist/src/google/protobuf/util/internal/object_writer.cc",
        "dist/src/google/protobuf/util/internal/protostream_objectsource.cc",
        "dist/src/google/protobuf/util/internal/protostream_objectwriter.cc",
        "dist/src/google/protobuf/util/internal/proto_writer.cc",
        "dist/src/google/protobuf/util/internal/type_info.cc",
        "dist/src/google/protobuf/util/internal/type_info_test_helper.cc",
        "dist/src/google/protobuf/util/internal/utility.cc",
        "dist/src/google/protobuf/util/json_util.cc",
        "dist/src/google/protobuf/util/message_differencer.cc",
        "dist/src/google/protobuf/util/time_util.cc",
        "dist/src/google/protobuf/util/type_resolver_util.cc",
    ],
    LIBDEPS=[
        '$BUILD_DIR/third_party/shim_zlib',
    ],
)

protobuf_env.Library(
    target='protoc',
    source=[
        "dist/src/google/protobuf/compiler/code_generator.cc",
        "dist/src/google/protobuf/compiler/command_line_interface.cc",
        "dist/src/google/protobuf/compiler/plugin.cc",
        "dist/src/google/protobuf/compiler/plugin.pb.cc",
        "dist/src/google/protobuf/compiler/subprocess.cc",
        "dist/src/google/protobuf/compiler/zip_writer.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_enum.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_enum_field.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_extension.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_field.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_file.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_generator.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_helpers.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_map_field.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_message.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_message_field.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_service.cc",
        "dist/src/google/protobuf/compiler/cpp/cpp_string_field.cc",
        "dist/src/google/protobuf/compiler/java/java_context.cc",
        "dist/src/google/protobuf/compiler/java/java_enum.cc",
        "dist/src/google/protobuf/compiler/java/java_enum_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_enum_field.cc",
        "dist/src/google/protobuf/compiler/java/java_enum_field_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_extension.cc",
        "dist/src/google/protobuf/compiler/java/java_extension_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_field.cc",
        "dist/src/google/protobuf/compiler/java/java_file.cc",
        "dist/src/google/protobuf/compiler/java/java_generator.cc",
        "dist/src/google/protobuf/compiler/java/java_generator_factory.cc",
        "dist/src/google/protobuf/compiler/java/java_helpers.cc",
        "dist/src/google/protobuf/compiler/java/java_map_field.cc",
        "dist/src/google/protobuf/compiler/java/java_map_field_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_message.cc",
        "dist/src/google/protobuf/compiler/java/java_message_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_message_builder.cc",
        "dist/src/google/protobuf/compiler/java/java_message_builder_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_message_field.cc",
        "dist/src/google/protobuf/compiler/java/java_message_field_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_name_resolver.cc",
        "dist/src/google/protobuf/compiler/java/java_primitive_field.cc",
        "dist/src/google/protobuf/compiler/java/java_primitive_field_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_shared_code_generator.cc",
        "dist/src/google/protobuf/compiler/java/java_service.cc",
        "dist/src/google/protobuf/compiler/java/java_string_field.cc",
        "dist/src/google/protobuf/compiler/java/java_string_field_lite.cc",
        "dist/src/google/protobuf/compiler/java/java_doc_comment.cc",
        "dist/src/google/protobuf/compiler/js/js_generator.cc",
        "dist/src/google/protobuf/compiler/js/well_known_types_embed.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_enum.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_extension.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_field.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_file.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_generator.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_message.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc",
        "dist/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc",
        "dist/src/google/protobuf/compiler/php/php_generator.cc",
        "dist/src/google/protobuf/compiler/python/python_generator.cc",
        "dist/src/google/protobuf/compiler/ruby/ruby_generator.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_enum.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_enum_field.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_field_base.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_generator.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_helpers.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_map_field.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_message.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_message_field.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc",
        "dist/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc",
    ],
    LIBDEPS=[
        'protobuf',
    ],
)

protobuf_env.Program(
    target='protoc',
    source=['dist/src/google/protobuf/compiler/main.cc'],
    LIBDEPS=[
        'protobuf',
        'protoc',
    ],
    AIB_COMPONENT='protobuf',
)