OLD | NEW |
(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 } |
OLD | NEW |