| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/stringpiece.cc', |
| 66 'util/stringprintf.cc', | 66 'util/stringprintf.cc', |
| 67 'util/strutil.cc', | 67 'util/strutil.cc', |
| 68 'util/utf.h', | 68 'util/utf.h', |
| 69 'util/util.h', | 69 'util/util.h', |
| 70 ], | 70 ], |
| 71 'conditions': [ | 71 'conditions': [ |
| 72 ['OS=="win"', { | 72 ['OS=="win"', { |
| 73 'sources': [ | |
| 74 'mswin/stdint.h' | |
| 75 ], | |
| 76 'include_dirs': [ | |
| 77 'mswin' | |
| 78 ], | |
| 79 'msvs_disabled_warnings': [ 4018, 4722, 4267 ], | 73 'msvs_disabled_warnings': [ 4018, 4722, 4267 ], |
| 80 }] | 74 }] |
| 81 ] | 75 ] |
| 82 }, | 76 }, |
| 83 ], | 77 ], |
| 84 } | 78 } |
| OLD | NEW |