OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'includes': ['src/cpp/libaddressinput.gypi'], | 5 'includes': ['src/cpp/libaddressinput.gypi'], |
6 'variables': { | 6 'variables': { |
7 'libaddressinput_test_data_dir%': 'src/third_party/libaddressinput/src/testd
ata', | 7 'libaddressinput_test_data_dir%': 'src/third_party/libaddressinput/src/testd
ata', |
8 'libaddressinput_util_files': [ | 8 'libaddressinput_util_files': [ |
9 'src/cpp/src/address_data.cc', | 9 'src/cpp/src/address_data.cc', |
10 'src/cpp/src/address_field.cc', | 10 'src/cpp/src/address_field.cc', |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 '<@(libaddressinput_test_files)', | 137 '<@(libaddressinput_test_files)', |
138 'chromium/addressinput_util_unittest.cc', | 138 'chromium/addressinput_util_unittest.cc', |
139 'chromium/chrome_address_validator_unittest.cc', | 139 'chromium/chrome_address_validator_unittest.cc', |
140 'chromium/chrome_metadata_source_unittest.cc', | 140 'chromium/chrome_metadata_source_unittest.cc', |
141 'chromium/chrome_storage_impl_unittest.cc', | 141 'chromium/chrome_storage_impl_unittest.cc', |
142 'chromium/fallback_data_store_unittest.cc', | 142 'chromium/fallback_data_store_unittest.cc', |
143 'chromium/storage_test_runner.cc', | 143 'chromium/storage_test_runner.cc', |
144 'chromium/string_compare_unittest.cc', | 144 'chromium/string_compare_unittest.cc', |
145 'chromium/trie_unittest.cc', | 145 'chromium/trie_unittest.cc', |
146 ], | 146 ], |
147 'conditions': [ | |
148 ['OS=="win"', { | |
149 # TODO(rouslan): Enable signed/unsigned warning after bumping to | |
150 # https://code.google.com/p/libaddressinput/source/detail?r=327 | |
151 'msvs_disabled_warnings': [ | |
152 4018, | |
153 ], | |
154 }], | |
155 ], | |
156 'defines': [ | 147 'defines': [ |
157 'TEST_DATA_DIR="<(libaddressinput_test_data_dir)"', | 148 'TEST_DATA_DIR="<(libaddressinput_test_data_dir)"', |
158 ], | 149 ], |
159 'include_dirs': [ | 150 'include_dirs': [ |
160 '../../', | 151 '../../', |
161 'src/cpp/src/', | 152 'src/cpp/src/', |
162 ], | 153 ], |
163 'dependencies': [ | 154 'dependencies': [ |
164 '../../base/base.gyp:base_prefs', | 155 '../../base/base.gyp:base_prefs', |
165 '../../base/base.gyp:run_all_unittests', | 156 '../../base/base.gyp:run_all_unittests', |
166 '../../net/net.gyp:net_test_support', | 157 '../../net/net.gyp:net_test_support', |
167 '../../testing/gtest.gyp:gtest', | 158 '../../testing/gtest.gyp:gtest', |
168 'libaddressinput', | 159 'libaddressinput', |
169 'libaddressinput_util', | 160 'libaddressinput_util', |
170 ], | 161 ], |
171 }, | 162 }, |
172 ], | 163 ], |
173 } | 164 } |
OLD | NEW |