| 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', |
| 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 } |
| OLD | NEW |