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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 ], | 127 ], |
128 'dependencies': [ | 128 'dependencies': [ |
129 '../icu/icu.gyp:icui18n', | 129 '../icu/icu.gyp:icui18n', |
130 '../icu/icu.gyp:icuuc', | 130 '../icu/icu.gyp:icuuc', |
131 '../../base/base.gyp:run_all_unittests', | 131 '../../base/base.gyp:run_all_unittests', |
132 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynami
c_annotations', | 132 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynami
c_annotations', |
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 # TODO: https://code.google.com/p/libphonenumber/issues/detail?id=553 |
| 138 'variables': { 'clang_warning_flags': [ '-Wno-unused-local-typedef' ] }, |
137 'conditions': [ | 139 'conditions': [ |
138 ['OS=="win"', { | 140 ['OS=="win"', { |
139 'action': [ | 141 'action': [ |
140 '/wo4309', | 142 '/wo4309', |
141 ], | 143 ], |
142 }], | 144 }], |
143 ], | 145 ], |
144 }] | 146 }] |
145 } | 147 } |
OLD | NEW |