Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3753)

Unified Diff: chrome/chrome.gyp

Issue 24998003: Compiler for the JSON Traversal Language. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments, added some unittests. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | chrome/tools/profile_reset/jtl_compiler.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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', ],
}],
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | chrome/tools/profile_reset/jtl_compiler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698