Revert 97987 - Switching NaCl IRT to be built inside the chrome build.
[chromium-blink-merge.git] / content / content_utility.gypi
blobf3f8c6553bed559e5df0d0f46bd5a393a9ee7fb4
1 # Copyright (c) 2011 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   'targets': [
7     {
8       'target_name': 'content_utility',
9       'type': 'static_library',
10       'dependencies': [
11         'content_common',
12         '../base/base.gyp:base',
13       ],
14       'sources': [
15         'utility/content_utility_client.h',
16         'utility/utility_main.cc',
17         'utility/utility_thread.cc',
18         'utility/utility_thread.h',
19       ],
20       'include_dirs': [
21         '..',
22       ],
23       'conditions': [
24         ['OS=="mac"', {
25           'link_settings': {
26             'mac_bundle_resources': [
27               'utility/utility.sb',
28             ],
29           },
30         }],
31       ],
32     },
33   ],