Battery Status API: add UMA logging for Linux.
[chromium-blink-merge.git] / tools / ipc_fuzzer / message_lib / message_lib.gyp
blobfd2ff7b31d6efdabe2be2caad2fff167865a788f
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8     'message_lib_deps': [
9       '../../../base/base.gyp:base',
10       '../../../chrome/chrome.gyp:common',
11       '../../../components/nacl.gyp:nacl_common',
12       '../../../content/content.gyp:content_child',
13       '../../../ipc/ipc.gyp:ipc',
14       '../../../media/cast/cast.gyp:cast_net',
15       '../../../ppapi/ppapi_internal.gyp:ppapi_ipc',
16       '../../../remoting/remoting.gyp:remoting_host',
17       '../../../skia/skia.gyp:skia',
18       '../../../third_party/libjingle/libjingle.gyp:libjingle',
19       '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
20       '../../../third_party/WebKit/public/blink.gyp:blink',
21       '../../../ui/accessibility/accessibility.gyp:ax_gen',
22     ],
23   },
24   'targets': [
25     {
26       'target_name': 'ipc_message_lib',
27       'type': 'static_library',
28       'dependencies': [
29          '<@(message_lib_deps)',
30       ],
31       'export_dependent_settings': [
32          '<@(message_lib_deps)',
33       ],
34       'sources': [
35         'all_messages.h',
36         'message_cracker.h',
37         'message_file.h',
38         'message_file_format.h',
39         'message_file_reader.cc',
40         'message_file_writer.cc',
41         'message_names.cc',
42         'message_names.h',
43       ],
44       'include_dirs': [
45         '../../..',
46       ],
47       'defines': [
48         'USE_CUPS',
49       ],
50     },
51   ],