aboutsummaryrefslogtreecommitdiff
path: root/libbrillo.gypi
blob: 2b5027bb2b9b75ed34397497180baa9c9effb6dc (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
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
{
  'target_defaults': {
    'variables': {
      'deps': [
        'libchrome-<(libbase_ver)'
      ],
      'USE_dbus%': '1',
    },
    'include_dirs': [
      '../libbrillo',
    ],
    'defines': [
      'USE_DBUS=<(USE_dbus)',
      'USE_RTTI_FOR_TYPE_TAGS',
    ],
  },
  'targets': [
    {
      'target_name': 'libbrillo-<(libbase_ver)',
      'type': 'none',
      'dependencies': [
        'libbrillo-core-<(libbase_ver)',
        'libbrillo-cryptohome-<(libbase_ver)',
        'libbrillo-http-<(libbase_ver)',
        'libbrillo-minijail-<(libbase_ver)',
        'libbrillo-streams-<(libbase_ver)',
        'libpolicy-<(libbase_ver)',
      ],
      'direct_dependent_settings': {
        'include_dirs': [
          '../libbrillo',
        ],
      },
      'includes': ['../common-mk/deps.gypi'],
    },
    {
      'target_name': 'libbrillo-core-<(libbase_ver)',
      'type': 'shared_library',
      'variables': {
        'exported_deps': [
          'dbus-1',
        ],
        'deps': ['<@(exported_deps)'],
      },
      'all_dependent_settings': {
        'variables': {
          'deps': [
            '<@(exported_deps)',
          ],
        },
      },
      'libraries': ['-lmodp_b64'],
      #TODO(deymo): Split DBus code from libbrillo-core the same way is split in
      # the Android.mk, based on the <(USE_dbus) variable.
      'sources': [
        'brillo/any.cc',
        'brillo/asynchronous_signal_handler.cc',
        'brillo/backoff_entry.cc',
        'brillo/daemons/dbus_daemon.cc',
        'brillo/daemons/daemon.cc',
        'brillo/data_encoding.cc',
        'brillo/dbus/async_event_sequencer.cc',
        'brillo/dbus/data_serialization.cc',
        'brillo/dbus/dbus_connection.cc',
        'brillo/dbus/dbus_method_invoker.cc',
        'brillo/dbus/dbus_method_response.cc',
        'brillo/dbus/dbus_object.cc',
        'brillo/dbus/dbus_service_watcher.cc',
        'brillo/dbus/dbus_signal.cc',
        'brillo/dbus/exported_object_manager.cc',
        'brillo/dbus/exported_property_set.cc',
        'brillo/dbus/utils.cc',
        'brillo/errors/error.cc',
        'brillo/errors/error_codes.cc',
        'brillo/file_utils.cc',
        'brillo/flag_helper.cc',
        'brillo/key_value_store.cc',
        'brillo/message_loops/base_message_loop.cc',
        'brillo/message_loops/message_loop.cc',
        'brillo/message_loops/message_loop_utils.cc',
        'brillo/mime_utils.cc',
        'brillo/osrelease_reader.cc',
        'brillo/process.cc',
        'brillo/process_reaper.cc',
        'brillo/process_information.cc',
        'brillo/secure_blob.cc',
        'brillo/strings/string_utils.cc',
        'brillo/syslog_logging.cc',
        'brillo/type_name_undecorate.cc',
        'brillo/url_utils.cc',
        'brillo/userdb_utils.cc',
        'brillo/value_conversion.cc',
      ],
    },
    {
      'target_name': 'libbrillo-http-<(libbase_ver)',
      'type': 'shared_library',
      'dependencies': [
        'libbrillo-core-<(libbase_ver)',
        'libbrillo-streams-<(libbase_ver)',
      ],
      'variables': {
        'exported_deps': [
          'libcurl',
        ],
        'deps': ['<@(exported_deps)'],
      },
      'all_dependent_settings': {
        'variables': {
          'deps': [
            '<@(exported_deps)',
          ],
        },
      },
      'sources': [
        'brillo/http/curl_api.cc',
        'brillo/http/http_connection_curl.cc',
        'brillo/http/http_form_data.cc',
        'brillo/http/http_request.cc',
        'brillo/http/http_transport.cc',
        'brillo/http/http_transport_curl.cc',
        'brillo/http/http_utils.cc',
      ],
    },
    {
      'target_name': 'libbrillo-streams-<(libbase_ver)',
      'type': 'shared_library',
      'dependencies': [
        'libbrillo-core-<(libbase_ver)',
      ],
      'variables': {
        'exported_deps': [
          'openssl',
        ],
        'deps': ['<@(exported_deps)'],
      },
      'all_dependent_settings': {
        'variables': {
          'deps': [
            '<@(exported_deps)',
          ],
        },
      },
      'sources': [
        'brillo/streams/file_stream.cc',
        'brillo/streams/input_stream_set.cc',
        'brillo/streams/memory_containers.cc',
        'brillo/streams/memory_stream.cc',
        'brillo/streams/openssl_stream_bio.cc',
        'brillo/streams/stream.cc',
        'brillo/streams/stream_errors.cc',
        'brillo/streams/stream_utils.cc',
        'brillo/streams/tls_stream.cc',
      ],
    },
    {
      'target_name': 'libbrillo-test-<(libbase_ver)',
      'type': 'static_library',
      'standalone_static_library': 1,
      'dependencies': [
        'libbrillo-http-<(libbase_ver)',
      ],
      'sources': [
        'brillo/http/http_connection_fake.cc',
        'brillo/http/http_transport_fake.cc',
        'brillo/message_loops/fake_message_loop.cc',
        'brillo/streams/fake_stream.cc',
      ],
      'includes': ['../common-mk/deps.gypi'],
    },
    {
      'target_name': 'libbrillo-cryptohome-<(libbase_ver)',
      'type': 'shared_library',
      'variables': {
        'exported_deps': [
          'openssl',
        ],
        'deps': ['<@(exported_deps)'],
      },
      'all_dependent_settings': {
        'variables': {
          'deps': [
            '<@(exported_deps)',
          ],
        },
      },
      'sources': [
        'brillo/cryptohome.cc',
      ],
    },
    {
      'target_name': 'libbrillo-minijail-<(libbase_ver)',
      'type': 'shared_library',
      'variables': {
        'exported_deps': [
          'libminijail',
        ],
        'deps': ['<@(exported_deps)'],
      },
      'all_dependent_settings': {
        'variables': {
          'deps': [
            '<@(exported_deps)',
          ],
        },
      },
      'cflags': [
        '-fvisibility=default',
      ],
      'sources': [
        'brillo/minijail/minijail.cc',
      ],
    },
    {
      'target_name': 'libpolicy-<(libbase_ver)',
      'type': 'shared_library',
      'dependencies': [
        'libpolicy-includes',
        '../common-mk/external_dependencies.gyp:policy-protos',
      ],
      'variables': {
        'exported_deps': [
          'openssl',
          'protobuf-lite',
        ],
        'deps': ['<@(exported_deps)'],
      },
      'all_dependent_settings': {
        'variables': {
          'deps': [
            '<@(exported_deps)',
          ],
        },
      },
      'ldflags': [
        '-Wl,--version-script,<(platform2_root)/libbrillo/libpolicy.ver',
      ],
      'sources': [
        'policy/device_policy.cc',
        'policy/device_policy_impl.cc',
        'policy/libpolicy.cc',
      ],
    },
    {
      'target_name': 'libbrillo-glib-<(libbase_ver)',
      'type': 'shared_library',
      'dependencies': [
          'libbrillo-<(libbase_ver)',
      ],
      'variables': {
        'exported_deps': [
          'dbus-1',
          'dbus-glib-1',
          'glib-2.0',
          'gobject-2.0',
        ],
        'deps': ['<@(exported_deps)'],
      },
      'cflags': [
        # glib uses the deprecated "register" attribute in some header files.
        '-Wno-deprecated-register',
      ],
      'all_dependent_settings': {
        'variables': {
          'deps': [
            '<@(exported_deps)',
          ],
        },
      },
      'sources': [
        'brillo/glib/abstract_dbus_service.cc',
        'brillo/glib/dbus.cc',
        'brillo/message_loops/glib_message_loop.cc',
      ],
      'includes': ['../common-mk/deps.gypi'],
    },
  ],
  'conditions': [
    ['USE_test == 1', {
      'targets': [
        {
          'target_name': 'libbrillo-<(libbase_ver)_unittests',
          'type': 'executable',
          'dependencies': [
            'libbrillo-<(libbase_ver)',
            'libbrillo-test-<(libbase_ver)',
            'libbrillo-glib-<(libbase_ver)',
          ],
          'variables': {
            'deps': [
              'libchrome-test-<(libbase_ver)',
            ],
            'proto_in_dir': 'brillo/dbus',
            'proto_out_dir': 'include/brillo/dbus',
          },
          'includes': [
            '../common-mk/common_test.gypi',
            '../common-mk/protoc.gypi',
          ],
          'cflags': [
            '-Wno-format-zero-length',
          ],
          'conditions': [
            ['debug == 1', {
              'cflags': [
                '-fprofile-arcs',
                '-ftest-coverage',
                '-fno-inline',
              ],
              'libraries': [
                '-lgcov',
              ],
            }],
          ],
          'sources': [
            'brillo/any_unittest.cc',
            'brillo/any_internal_impl_unittest.cc',
            'brillo/asynchronous_signal_handler_unittest.cc',
            'brillo/backoff_entry_unittest.cc',
            'brillo/data_encoding_unittest.cc',
            'brillo/dbus/async_event_sequencer_unittest.cc',
            'brillo/dbus/data_serialization_unittest.cc',
            'brillo/dbus/dbus_method_invoker_unittest.cc',
            'brillo/dbus/dbus_object_unittest.cc',
            'brillo/dbus/dbus_param_reader_unittest.cc',
            'brillo/dbus/dbus_param_writer_unittest.cc',
            'brillo/dbus/dbus_signal_handler_unittest.cc',
            'brillo/dbus/exported_object_manager_unittest.cc',
            'brillo/dbus/exported_property_set_unittest.cc',
            'brillo/errors/error_codes_unittest.cc',
            'brillo/errors/error_unittest.cc',
            'brillo/file_utils_unittest.cc',
            'brillo/flag_helper_unittest.cc',
            'brillo/glib/object_unittest.cc',
            'brillo/http/http_connection_curl_unittest.cc',
            'brillo/http/http_form_data_unittest.cc',
            'brillo/http/http_request_unittest.cc',
            'brillo/http/http_transport_curl_unittest.cc',
            'brillo/http/http_utils_unittest.cc',
            'brillo/key_value_store_unittest.cc',
            'brillo/map_utils_unittest.cc',
            'brillo/message_loops/base_message_loop_unittest.cc',
            'brillo/message_loops/fake_message_loop_unittest.cc',
            'brillo/message_loops/glib_message_loop_unittest.cc',
            'brillo/message_loops/message_loop_unittest.cc',
            'brillo/mime_utils_unittest.cc',
            'brillo/osrelease_reader_unittest.cc',
            'brillo/process_reaper_unittest.cc',
            'brillo/process_unittest.cc',
            'brillo/secure_blob_unittest.cc',
            'brillo/streams/fake_stream_unittest.cc',
            'brillo/streams/file_stream_unittest.cc',
            'brillo/streams/input_stream_set_unittest.cc',
            'brillo/streams/memory_containers_unittest.cc',
            'brillo/streams/memory_stream_unittest.cc',
            'brillo/streams/openssl_stream_bio_unittests.cc',
            'brillo/streams/stream_unittest.cc',
            'brillo/streams/stream_utils_unittest.cc',
            'brillo/strings/string_utils_unittest.cc',
            'brillo/type_name_undecorate_unittest.cc',
            'brillo/unittest_utils.cc',
            'brillo/url_utils_unittest.cc',
            'brillo/variant_dictionary_unittest.cc',
            'brillo/value_conversion_unittest.cc',
            'testrunner.cc',
            '<(proto_in_dir)/test.proto',
          ]
        },
        {
          'target_name': 'libpolicy-<(libbase_ver)_unittests',
          'type': 'executable',
          'dependencies': ['libpolicy-<(libbase_ver)'],
          'includes': ['../common-mk/common_test.gypi'],
          'sources': [
            'policy/tests/libpolicy_unittest.cc',
          ]
        },
      ],
    }],
  ],
}