summaryrefslogtreecommitdiffstats
path: root/chrome/tools/profile_reset/jtl_compiler.gyp
blob: f78c25ed1f99ea33f0de88357ed24a36556ccd76 (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
31
32
33
34
35
36
37
38
{
  'variables': {
    'chromium_code': 1,
  },
  'targets': [
    {
      'target_name': 'jtl_compiler',
      'type': 'executable',
      'dependencies': [
        '../../../base/base.gyp:base',        
        '../../../crypto/crypto.gyp:crypto',
        'jtl_compiler_lib',
      ],
      'sources': [
        '../../browser/profile_resetter/jtl_foundation.cc',
        '../../browser/profile_resetter/jtl_foundation.h',
        'jtl_compiler_frontend.cc',
      ],
    },
    {
      'target_name': 'jtl_compiler_lib',
      'type': 'static_library',
      'product_name': 'jtl_compiler',
      'dependencies': [
        '../../../<(gyp_output_dir)/gn_gyp/third_party/re2/re2.gyp:re2',
        '../../../base/base.gyp:base',
      ],
      'sources': [
        '../../browser/profile_resetter/jtl_foundation.h',
        '../../browser/profile_resetter/jtl_instructions.h',
        'jtl_compiler.h',
        'jtl_compiler.cc',
        'jtl_parser.h',
        'jtl_parser.cc',
      ],
    },
  ],
}