Index: chrome/chrome.gyp |
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp |
index 65b14ea7fcc1114b09ff783440a4bda259576a46..3a63d2f721083f0546b2c963e6adf828afdee406 100644 |
--- a/chrome/chrome.gyp |
+++ b/chrome/chrome.gyp |
@@ -1088,6 +1088,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', ], |
}], |