Roll src/third_party/WebKit f36d5e0:68b67cd (svn 193299:193303)
[chromium-blink-merge.git] / tools / ipc_fuzzer / message_lib / message_lib.gyp
blob29e9133bd53165845c6beb15cc5698b998c2dfc9
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       '../../../chrome/chrome.gyp:safe_browsing_proto',
12       '../../../components/components.gyp:pdf_common',
13       '../../../components/nacl.gyp:nacl_common',
14       '../../../content/content.gyp:content_child',
15       '../../../ipc/ipc.gyp:ipc',
16       '../../../media/cast/cast.gyp:cast_net',
17       '../../../ppapi/ppapi_internal.gyp:ppapi_ipc',
18       '../../../remoting/remoting.gyp:remoting_host',
19       '../../../skia/skia.gyp:skia',
20       '../../../third_party/libjingle/libjingle.gyp:libjingle',
21       '../../../third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
22       '../../../third_party/WebKit/public/blink.gyp:blink',
23       '../../../ui/accessibility/accessibility.gyp:ax_gen',
24     ],
25   },
26   'targets': [
27     {
28       'target_name': 'ipc_message_lib',
29       'type': 'static_library',
30       'dependencies': [
31          '<@(message_lib_deps)',
32       ],
33       'export_dependent_settings': [
34          '<@(message_lib_deps)',
35       ],
36       'sources': [
37         'all_messages.h',
38         'message_cracker.h',
39         'message_file.h',
40         'message_file_format.h',
41         'message_file_reader.cc',
42         'message_file_writer.cc',
43         'message_names.cc',
44         'message_names.h',
45       ],
46       'include_dirs': [
47         '../../..',
48       ],
49       'defines': [
50         'USE_CUPS',
51       ],
52     },
53   ],