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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 {
2 'variables': {
3 'chromium_code': 1,
4 },
5 'targets': [
6 {
7 'target_name': 'jtl_compiler',
8 'type': 'executable',
9 'dependencies': [
10 '../../../base/base.gyp:base',
11 '../../../crypto/crypto.gyp:crypto',
12 'jtl_compiler_lib',
13 ],
14 'sources': [
15 '../../browser/profile_resetter/jtl_foundation.cc',
16 '../../browser/profile_resetter/jtl_foundation.h',
17 'jtl_compiler_frontend.cc',
18 ],
19 },
20 {
21 'target_name': 'jtl_compiler_lib',
22 'type': 'static_library',
23 'product_name': 'jtl_compiler',
24 'dependencies': [
25 '../../../base/base.gyp:base',
26 '../../../third_party/re2/re2.gyp:re2',
27 ],
28 'sources': [
29 '../../browser/profile_resetter/jtl_foundation.h',
30 '../../browser/profile_resetter/jtl_instructions.h',
31 'jtl_compiler.h',
32 'jtl_compiler.cc',
33 'jtl_parser.h',
34 'jtl_parser.cc',
35 ],
36 },
37 ],
38 }
OLDNEW
« 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