OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 'variables': { | 6 'variables': { |
7 'use_system_re2%': 0, | 7 'use_system_re2%': 0, |
8 }, | 8 }, |
9 'conditions': [ | 9 'conditions': [ |
10 ['use_system_re2==0', { | 10 ['use_system_re2==0', { |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 'util/util.h', | 74 'util/util.h', |
75 ], | 75 ], |
76 'conditions': [ | 76 'conditions': [ |
77 ['OS=="win"', { | 77 ['OS=="win"', { |
78 'sources': [ | 78 'sources': [ |
79 'mswin/stdint.h' | 79 'mswin/stdint.h' |
80 ], | 80 ], |
81 'include_dirs': [ | 81 'include_dirs': [ |
82 'mswin' | 82 'mswin' |
83 ], | 83 ], |
84 'msvs_disabled_warnings': [ 4018, 4722 ], | 84 'msvs_disabled_warnings': [ 4018, 4722, 4267 ], |
85 }] | 85 }] |
86 ] | 86 ] |
87 }, | 87 }, |
88 ], | 88 ], |
89 }, { # use_system_re2==1 | 89 }, { # use_system_re2==1 |
90 'targets': [ | 90 'targets': [ |
91 { | 91 { |
92 'target_name': 're2', | 92 'target_name': 're2', |
93 'type': 'none', | 93 'type': 'none', |
94 'variables': { | 94 'variables': { |
(...skipping 12 matching lines...) Expand all Loading... |
107 'link_settings': { | 107 'link_settings': { |
108 'libraries': [ | 108 'libraries': [ |
109 '-lre2', | 109 '-lre2', |
110 ], | 110 ], |
111 }, | 111 }, |
112 } | 112 } |
113 ], | 113 ], |
114 }], | 114 }], |
115 ], | 115 ], |
116 } | 116 } |
OLD | NEW |