summaryrefslogtreecommitdiffstats
path: root/chrome/chrome_process_finder.gypi
blob: 26b40800e983e3603e1556c772081d6e794ae428 (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
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'targets': [
    {
      'target_name': 'chrome_process_finder',
      'type': 'static_library',
      'include_dirs': [
        '..',
      ],
      'dependencies': [
        '../base/base.gyp:base',
        '../chrome/common_constants.gyp:common_constants',
      ],
      'conditions': [
        ['configuration_policy==1', {
          'dependencies': [
            'policy_path_parser'
          ],
        }],
      ],
      'sources': [
        'browser/chrome_process_finder_win.cc',
        'browser/chrome_process_finder_win.h',
      ],
    },
  ],
}