Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(940)

Side by Side Diff: third_party/libaddressinput/libaddressinput.gyp

Issue 1681663002: [Testing] Run libaddressinput_unittests on bots (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initial Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698