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 config("re2_config") { | 5 config("re2_config") { |
6 include_dirs = [ "src" ] | 6 include_dirs = [ "src" ] |
7 } | 7 } |
8 | 8 |
9 static_library("re2") { | 9 static_library("re2") { |
10 sources = [ | 10 sources = [ |
| 11 "src/re2/bitmap256.h", |
11 "src/re2/bitstate.cc", | 12 "src/re2/bitstate.cc", |
12 "src/re2/compile.cc", | 13 "src/re2/compile.cc", |
13 "src/re2/dfa.cc", | 14 "src/re2/dfa.cc", |
14 "src/re2/filtered_re2.cc", | 15 "src/re2/filtered_re2.cc", |
15 "src/re2/filtered_re2.h", | 16 "src/re2/filtered_re2.h", |
16 "src/re2/mimics_pcre.cc", | 17 "src/re2/mimics_pcre.cc", |
17 "src/re2/nfa.cc", | 18 "src/re2/nfa.cc", |
18 "src/re2/onepass.cc", | 19 "src/re2/onepass.cc", |
19 "src/re2/parse.cc", | 20 "src/re2/parse.cc", |
20 "src/re2/perl_groups.cc", | 21 "src/re2/perl_groups.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
31 "src/re2/set.cc", | 32 "src/re2/set.cc", |
32 "src/re2/set.h", | 33 "src/re2/set.h", |
33 "src/re2/simplify.cc", | 34 "src/re2/simplify.cc", |
34 "src/re2/stringpiece.cc", | 35 "src/re2/stringpiece.cc", |
35 "src/re2/stringpiece.h", | 36 "src/re2/stringpiece.h", |
36 "src/re2/tostring.cc", | 37 "src/re2/tostring.cc", |
37 "src/re2/unicode_casefold.cc", | 38 "src/re2/unicode_casefold.cc", |
38 "src/re2/unicode_casefold.h", | 39 "src/re2/unicode_casefold.h", |
39 "src/re2/unicode_groups.cc", | 40 "src/re2/unicode_groups.cc", |
40 "src/re2/unicode_groups.h", | 41 "src/re2/unicode_groups.h", |
41 "src/re2/variadic_function.h", | |
42 "src/re2/walker-inl.h", | 42 "src/re2/walker-inl.h", |
43 "src/util/atomicops.h", | |
44 "src/util/flags.h", | 43 "src/util/flags.h", |
45 "src/util/hash.cc", | |
46 "src/util/logging.cc", | |
47 "src/util/logging.h", | 44 "src/util/logging.h", |
| 45 "src/util/mix.h", |
48 "src/util/mutex.h", | 46 "src/util/mutex.h", |
49 "src/util/rune.cc", | 47 "src/util/rune.cc", |
50 "src/util/sparse_array.h", | 48 "src/util/sparse_array.h", |
51 "src/util/sparse_set.h", | 49 "src/util/sparse_set.h", |
52 "src/util/stringprintf.cc", | |
53 "src/util/strutil.cc", | 50 "src/util/strutil.cc", |
| 51 "src/util/strutil.h", |
54 "src/util/utf.h", | 52 "src/util/utf.h", |
55 "src/util/util.h", | 53 "src/util/util.h", |
56 "src/util/valgrind.cc", | |
57 "src/util/valgrind.h", | |
58 ] | 54 ] |
59 | 55 |
60 configs -= [ "//build/config/compiler:chromium_code" ] | 56 configs -= [ "//build/config/compiler:chromium_code" ] |
61 configs += [ "//build/config/compiler:no_chromium_code" ] | 57 configs += [ "//build/config/compiler:no_chromium_code" ] |
62 public_configs = [ ":re2_config" ] | 58 public_configs = [ ":re2_config" ] |
63 } | 59 } |
OLD | NEW |