message_lib.gyp revision a3f6a49ab37290eeeb8db0f41ec0f1cb74a68be7
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.
4
5{
6  'variables': {
7    'chromium_code': 1,
8  },
9  'targets': [
10    {
11      'target_name': 'ipc_message_lib',
12      'type': 'static_library',
13      'dependencies': [
14        '../../../base/base.gyp:base',
15        '../../../chrome/chrome.gyp:common',
16        '../../../ipc/ipc.gyp:ipc',
17        '../../../skia/skia.gyp:skia',
18      ],
19      'sources': [
20        'all_messages.h',
21        'message_cracker.h',
22        'message_file.h',
23        'message_file_format.h',
24        'message_file_reader.cc',
25        'message_file_writer.cc',
26        'message_names.cc',
27        'message_names.h',
28      ],
29      'include_dirs': [
30        '../..',
31      ],
32    },
33  ],
34}
35