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 'target_defaults': { | 6 'target_defaults': { |
7 'include_dirs': [ | 7 'include_dirs': [ |
8 'src', | 8 'src', |
9 'src/test', | 9 'src/test', |
10 # The libphonenumber source (and test code) expects the | 10 # The libphonenumber source (and test code) expects the |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
149 'action': [ | 149 'action': [ |
150 '/wo4309', | 150 '/wo4309', |
151 ], | 151 ], |
152 }], | 152 }], |
153 # libphonenumber needs to fix their ODR violations. http://crbug.com/45602 1 | 153 # libphonenumber needs to fix their ODR violations. http://crbug.com/45602 1 |
154 ['OS=="linux"', { | 154 ['OS=="linux"', { |
155 'ldflags!': [ | 155 'ldflags!': [ |
156 '-Wl,--detect-odr-violations', | 156 '-Wl,--detect-odr-violations', |
157 ], | 157 ], |
158 }], | 158 }], |
159 ['test_isolation_mode != "noop"', { | |
160 'targets': [ | |
M-A Ruel
2016/02/08 21:49:00
You are already inside a targets section. You must
Mathieu
2016/02/09 00:55:50
Done.
| |
161 { | |
162 'target_name': 'libphonenumber_unittests_run', | |
163 'type': 'none', | |
164 'dependencies': [ | |
165 'libphonenumber_unittests', | |
166 ], | |
167 'includes': [ | |
168 '../../build/isolate.gypi', | |
169 ], | |
170 'sources': [ | |
171 'libphonenumber_unittests.isolate', | |
172 ], | |
173 }, | |
174 ], | |
175 }], | |
159 ], | 176 ], |
160 }] | 177 }] |
161 } | 178 } |
OLD | NEW |