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

Side by Side Diff: third_party/re2/re2.gyp

Issue 10575037: Include RE2 library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Less intrusive fix for Android Created 8 years, 4 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
« no previous file with comments | « third_party/re2/patches/remove-valgrind-code.patch ('k') | third_party/re2/re2/Makefile » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 },
8 'targets': [
9 {
10 'target_name': 're2',
11 'type': '<(library)',
12 'include_dirs': [
13 '.',
14 '<(DEPTH)',
15 ],
16 'direct_dependent_settings': {
17 'include_dirs': [
18 '.',
19 '<(DEPTH)',
20 ],
21 },
22 'dependencies': [
23 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
24 ],
25 'sources': [
26 're2/bitstate.cc',
27 're2/compile.cc',
28 're2/dfa.cc',
29 're2/filtered_re2.cc',
30 're2/filtered_re2.h',
31 're2/mimics_pcre.cc',
32 're2/nfa.cc',
33 're2/onepass.cc',
34 're2/parse.cc',
35 're2/perl_groups.cc',
36 're2/prefilter.cc',
37 're2/prefilter.h',
38 're2/prefilter_tree.cc',
39 're2/prefilter_tree.h',
40 're2/prog.cc',
41 're2/prog.h',
42 're2/re2.cc',
43 're2/re2.h',
44 're2/regexp.cc',
45 're2/regexp.h',
46 're2/set.cc',
47 're2/set.h',
48 're2/simplify.cc',
49 're2/stringpiece.h',
50 're2/tostring.cc',
51 're2/unicode_casefold.cc',
52 're2/unicode_casefold.h',
53 're2/unicode_groups.cc',
54 're2/unicode_groups.h',
55 're2/variadic_function.h',
56 're2/walker-inl.h',
57 'util/arena.cc',
58 'util/arena.h',
59 'util/atomicops.h',
60 'util/flags.h',
61 'util/hash.cc',
62 'util/logging.h',
63 'util/mutex.h',
64 'util/rune.cc',
65 'util/sparse_array.h',
66 'util/sparse_set.h',
67 'util/stringpiece.cc',
68 'util/stringprintf.cc',
69 'util/strutil.cc',
70 'util/utf.h',
71 'util/util.h',
72 ],
73 'conditions': [
74 ['OS=="win"', {
75 'sources': [
76 'mswin/stdint.h'
77 ],
78 'include_dirs': [
79 'mswin'
80 ]
81 }]
82 ]
83 },
84 ],
85 }
OLDNEW
« no previous file with comments | « third_party/re2/patches/remove-valgrind-code.patch ('k') | third_party/re2/re2/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698