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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 '../../testing/gmock.gyp:gmock', | 133 '../../testing/gmock.gyp:gmock', |
134 '../../testing/gtest.gyp:gtest', | 134 '../../testing/gtest.gyp:gtest', |
135 'libphonenumber_without_metadata', | 135 'libphonenumber_without_metadata', |
136 ], | 136 ], |
137 'conditions': [ | 137 'conditions': [ |
138 ['OS=="win"', { | 138 ['OS=="win"', { |
139 'action': [ | 139 'action': [ |
140 '/wo4309', | 140 '/wo4309', |
141 ], | 141 ], |
142 }], | 142 }], |
143 # libphonenumber needs to fix their ODR violations. http://crbug.com/45602
1 | |
144 ['OS=="linux"', { | |
145 'ldflags!': [ | |
146 '-Wl,--detect-odr-violations', | |
147 ], | |
148 }], | |
149 ], | 143 ], |
150 }] | 144 }] |
151 } | 145 } |
OLD | NEW |