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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 'src/cpp/src/', | 143 'src/cpp/src/', |
144 ], | 144 ], |
145 'dependencies': [ | 145 'dependencies': [ |
146 '../../base/base.gyp:run_all_unittests', | 146 '../../base/base.gyp:run_all_unittests', |
147 '../../components/prefs/prefs.gyp:prefs', | 147 '../../components/prefs/prefs.gyp:prefs', |
148 '../../net/net.gyp:net_test_support', | 148 '../../net/net.gyp:net_test_support', |
149 '../../testing/gtest.gyp:gtest', | 149 '../../testing/gtest.gyp:gtest', |
150 'libaddressinput', | 150 'libaddressinput', |
151 'libaddressinput_util', | 151 'libaddressinput_util', |
152 ], | 152 ], |
| 153 'conditions': [ |
| 154 ['test_isolation_mode != "noop"', { |
| 155 'targets': [ |
| 156 { |
| 157 'target_name': 'libaddressinput_unittests_run', |
| 158 'type': 'none', |
| 159 'dependencies': [ |
| 160 'libaddressinput_unittests', |
| 161 ], |
| 162 'includes': [ |
| 163 '../../build/isolate.gypi', |
| 164 ], |
| 165 'sources': [ |
| 166 'libaddressinput_unittests.isolate', |
| 167 ], |
| 168 }, |
| 169 ], |
| 170 }], |
| 171 ], |
153 }, | 172 }, |
154 ], | 173 ], |
155 } | 174 } |
OLD | NEW |