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

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: Fixed windows include dirs Created 8 years, 6 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 # 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 ],
15 'direct_dependent_settings': {
16 'include_dirs': [
17 '.',
18 ],
19 },
20 'sources': [
21 're2/bitstate.cc',
22 're2/compile.cc',
23 're2/dfa.cc',
24 're2/filtered_re2.cc',
25 're2/filtered_re2.h',
26 're2/mimics_pcre.cc',
27 're2/nfa.cc',
28 're2/onepass.cc',
29 're2/parse.cc',
30 're2/perl_groups.cc',
31 're2/prefilter.cc',
32 're2/prefilter.h',
33 're2/prefilter_tree.cc',
34 're2/prefilter_tree.h',
35 're2/prog.cc',
36 're2/prog.h',
37 're2/re2.cc',
38 're2/re2.h',
39 're2/regexp.cc',
40 're2/regexp.h',
41 're2/set.cc',
42 're2/set.h',
43 're2/simplify.cc',
44 're2/stringpiece.h',
45 're2/tostring.cc',
46 're2/unicode_casefold.cc',
47 're2/unicode_casefold.h',
48 're2/unicode_groups.cc',
49 're2/unicode_groups.h',
50 're2/variadic_function.h',
51 're2/walker-inl.h',
52 'util/arena.cc',
53 'util/arena.h',
54 'util/atomicops.h',
55 'util/flags.h',
56 'util/hash.cc',
57 'util/logging.h',
58 'util/mutex.h',
59 'util/rune.cc',
60 'util/sparse_array.h',
61 'util/sparse_set.h',
62 'util/stringpiece.cc',
63 'util/stringprintf.cc',
64 'util/strutil.cc',
65 'util/utf.h',
66 'util/util.h',
67 'util/valgrind.cc',
68 'util/valgrind.h',
69 ],
70 'conditions': [
71 ['OS=="win"', {
72 'sources': [
73 'mswin/stdint.h'
74 ],
75 'include_dirs': [
76 'mswin'
77 ]
78 }]
79 ]
80 },
81 ],
82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698