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

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

Issue 1516543002: Update re2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update instructions Created 5 years 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 're2', 8 'target_name': 're2',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '.', 11 '.',
12 '<(DEPTH)', 12 '<(DEPTH)',
13 ], 13 ],
14 'direct_dependent_settings': { 14 'direct_dependent_settings': {
15 'include_dirs': [ 15 'include_dirs': [
16 '.', 16 '.',
17 '<(DEPTH)', 17 '<(DEPTH)',
18 ], 18 ],
19 }, 19 },
20 'dependencies': [ 20 'dependencies': [
21 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 21 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
tfarina 2015/12/14 09:30:05 Are we able to remove this now?
battre 2015/12/14 21:25:51 I think so. I will try it out tomorrow. Hope that
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 're2/bitstate.cc', 24 're2/bitstate.cc',
25 're2/compile.cc', 25 're2/compile.cc',
26 're2/dfa.cc', 26 're2/dfa.cc',
27 're2/filtered_re2.cc', 27 're2/filtered_re2.cc',
28 're2/filtered_re2.h', 28 're2/filtered_re2.h',
29 're2/mimics_pcre.cc', 29 're2/mimics_pcre.cc',
30 're2/nfa.cc', 30 're2/nfa.cc',
31 're2/onepass.cc', 31 're2/onepass.cc',
32 're2/parse.cc', 32 're2/parse.cc',
33 're2/perl_groups.cc', 33 're2/perl_groups.cc',
34 're2/prefilter.cc', 34 're2/prefilter.cc',
35 're2/prefilter.h', 35 're2/prefilter.h',
36 're2/prefilter_tree.cc', 36 're2/prefilter_tree.cc',
37 're2/prefilter_tree.h', 37 're2/prefilter_tree.h',
38 're2/prog.cc', 38 're2/prog.cc',
39 're2/prog.h', 39 're2/prog.h',
40 're2/re2.cc', 40 're2/re2.cc',
41 're2/re2.h', 41 're2/re2.h',
42 're2/regexp.cc', 42 're2/regexp.cc',
43 're2/regexp.h', 43 're2/regexp.h',
44 're2/set.cc', 44 're2/set.cc',
45 're2/set.h', 45 're2/set.h',
46 're2/simplify.cc', 46 're2/simplify.cc',
47 're2/stringpiece.cc',
47 're2/stringpiece.h', 48 're2/stringpiece.h',
48 're2/tostring.cc', 49 're2/tostring.cc',
49 're2/unicode_casefold.cc', 50 're2/unicode_casefold.cc',
50 're2/unicode_casefold.h', 51 're2/unicode_casefold.h',
51 're2/unicode_groups.cc', 52 're2/unicode_groups.cc',
52 're2/unicode_groups.h', 53 're2/unicode_groups.h',
53 're2/variadic_function.h', 54 're2/variadic_function.h',
54 're2/walker-inl.h', 55 're2/walker-inl.h',
55 'util/arena.cc',
56 'util/arena.h',
57 'util/atomicops.h', 56 'util/atomicops.h',
58 'util/flags.h', 57 'util/flags.h',
59 'util/hash.cc', 58 'util/hash.cc',
59 'util/logging.cc',
60 'util/logging.h', 60 'util/logging.h',
61 'util/mutex.h', 61 'util/mutex.h',
62 'util/rune.cc', 62 'util/rune.cc',
63 'util/sparse_array.h', 63 'util/sparse_array.h',
64 'util/sparse_set.h', 64 'util/sparse_set.h',
65 'util/stringpiece.cc',
66 'util/stringprintf.cc', 65 'util/stringprintf.cc',
67 'util/strutil.cc', 66 'util/strutil.cc',
68 'util/utf.h', 67 'util/utf.h',
69 'util/util.h', 68 'util/util.h',
69 'util/valgrind.cc',
70 'util/valgrind.h',
70 ], 71 ],
71 'conditions': [ 72 'conditions': [
72 ['OS=="win"', { 73 ['OS=="win"', {
73 'msvs_disabled_warnings': [ 4018, 4722, 4267 ], 74 'msvs_disabled_warnings': [ 4018, 4722, 4267 ],
74 }] 75 }]
75 ] 76 ]
76 }, 77 },
77 ], 78 ],
78 } 79 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698