| Index: chrome/chrome.gyp
|
| diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
|
| index 7179824e7b3d07e709d99f1d98f9127f9d16fdc8..73f5734f9c3c69b901f3ba125407fde49ab6eb90 100644
|
| --- a/chrome/chrome.gyp
|
| +++ b/chrome/chrome.gyp
|
| @@ -1087,6 +1087,40 @@
|
| 'chrome_android.gypi',
|
| ]}, # 'includes'
|
| ], # OS=="android"
|
| + ['OS!="android" and OS!="ios"', {
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'jtl_compiler',
|
| + 'type': 'executable',
|
| + 'dependencies': [
|
| + '../base/base.gyp:base',
|
| + 'jtl_compiler_lib',
|
| + ],
|
| + 'sources': [
|
| + 'tools/profile_reset/jtl_compiler_frontend.cc',
|
| + ],
|
| + },
|
| + {
|
| + 'target_name': 'jtl_compiler_lib',
|
| + 'type': 'static_library',
|
| + 'product_name': 'jtl_compiler',
|
| + 'dependencies': [
|
| + '../base/base.gyp:base',
|
| + '../crypto/crypto.gyp:crypto',
|
| + '../third_party/re2/re2.gyp:re2',
|
| + ],
|
| + 'sources': [
|
| + 'browser/profile_resetter/jtl_foundation.h',
|
| + 'browser/profile_resetter/jtl_foundation.cc',
|
| + 'browser/profile_resetter/jtl_instructions.h',
|
| + 'tools/profile_reset/jtl_compiler.h',
|
| + 'tools/profile_reset/jtl_compiler.cc',
|
| + 'tools/profile_reset/jtl_parser.h',
|
| + 'tools/profile_reset/jtl_parser.cc',
|
| + ],
|
| + },
|
| + ]},
|
| + ], # OS!="android" and OS!="ios"
|
| ['configuration_policy==1 and OS!="android"', {
|
| 'includes': [ 'policy.gypi', ],
|
| }],
|
|
|