OLD | NEW |
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': [ |
(...skipping 26 matching lines...) Expand all Loading... |
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', | |
48 're2/stringpiece.h', | 47 're2/stringpiece.h', |
49 're2/tostring.cc', | 48 're2/tostring.cc', |
50 're2/unicode_casefold.cc', | 49 're2/unicode_casefold.cc', |
51 're2/unicode_casefold.h', | 50 're2/unicode_casefold.h', |
52 're2/unicode_groups.cc', | 51 're2/unicode_groups.cc', |
53 're2/unicode_groups.h', | 52 're2/unicode_groups.h', |
54 're2/variadic_function.h', | 53 're2/variadic_function.h', |
55 're2/walker-inl.h', | 54 're2/walker-inl.h', |
| 55 'util/arena.cc', |
| 56 'util/arena.h', |
56 'util/atomicops.h', | 57 'util/atomicops.h', |
57 'util/flags.h', | 58 'util/flags.h', |
58 'util/hash.cc', | 59 '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', |
65 'util/stringprintf.cc', | 66 'util/stringprintf.cc', |
66 'util/strutil.cc', | 67 'util/strutil.cc', |
67 'util/utf.h', | 68 'util/utf.h', |
68 'util/util.h', | 69 'util/util.h', |
69 'util/valgrind.cc', | |
70 'util/valgrind.h', | |
71 ], | 70 ], |
72 'conditions': [ | 71 'conditions': [ |
73 ['OS=="win"', { | 72 ['OS=="win"', { |
74 'msvs_disabled_warnings': [ 4018, 4722, 4267 ], | 73 'msvs_disabled_warnings': [ 4018, 4722, 4267 ], |
75 }] | 74 }] |
76 ] | 75 ] |
77 }, | 76 }, |
78 ], | 77 ], |
79 } | 78 } |
OLD | NEW |