| Index: chrome/tools/profile_reset/jtl_compiler.gyp | 
| diff --git a/chrome/tools/profile_reset/jtl_compiler.gyp b/chrome/tools/profile_reset/jtl_compiler.gyp | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..6d210157897a4a0cbd2a0042b3416ae6013fd950 | 
| --- /dev/null | 
| +++ b/chrome/tools/profile_reset/jtl_compiler.gyp | 
| @@ -0,0 +1,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': [ | 
| +        '../../../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', | 
| +      ], | 
| +    }, | 
| +  ], | 
| +} | 
|  |