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

Unified Diff: chrome/tools/profile_reset/jtl_compiler.gyp

Issue 24998003: Compiler for the JSON Traversal Language. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed linker errors on Win. Created 7 years, 2 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 | « chrome/tools/profile_reset/jtl_compiler.cc ('k') | chrome/tools/profile_reset/jtl_compiler_frontend.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..57cf07d8f4934da28cfe4f4afa7304b53e1f053f
--- /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': [
+ '../../../base/base.gyp:base',
+ '../../../third_party/re2/re2.gyp:re2',
+ ],
+ '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',
+ ],
+ },
+ ],
+}
« no previous file with comments | « chrome/tools/profile_reset/jtl_compiler.cc ('k') | chrome/tools/profile_reset/jtl_compiler_frontend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698