OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 ], | 174 ], |
175 'sources': [ | 175 'sources': [ |
176 # TODO(yoz): Refactor once we have a second test target. | 176 # TODO(yoz): Refactor once we have a second test target. |
177 # TODO(yoz): Something is off here; should this .gyp file be | 177 # TODO(yoz): Something is off here; should this .gyp file be |
178 # in the parent directory? Test target extensions_browsertests? | 178 # in the parent directory? Test target extensions_browsertests? |
179 '../browser/api/dns/dns_apitest.cc', | 179 '../browser/api/dns/dns_apitest.cc', |
180 '../browser/api/socket/socket_apitest.cc', | 180 '../browser/api/socket/socket_apitest.cc', |
181 '../browser/api/sockets_tcp/sockets_tcp_apitest.cc', | 181 '../browser/api/sockets_tcp/sockets_tcp_apitest.cc', |
182 '../browser/api/sockets_udp/sockets_udp_apitest.cc', | 182 '../browser/api/sockets_udp/sockets_udp_apitest.cc', |
183 'browser/shell_browsertest.cc', | 183 'browser/shell_browsertest.cc', |
| 184 'test/shell_apitest.cc', |
| 185 'test/shell_apitest.h', |
| 186 'test/shell_test.cc', |
184 'test/shell_test.h', | 187 'test/shell_test.h', |
185 'test/shell_test.cc', | |
186 'test/shell_test_launcher_delegate.cc', | 188 'test/shell_test_launcher_delegate.cc', |
187 'test/shell_test_launcher_delegate.h', | 189 'test/shell_test_launcher_delegate.h', |
188 'test/shell_tests_main.cc', | 190 'test/shell_tests_main.cc', |
189 ], | 191 ], |
190 }, | 192 }, |
191 { | 193 { |
192 'target_name': 'app_shell_unittests', | 194 'target_name': 'app_shell_unittests', |
193 'type': 'executable', | 195 'type': 'executable', |
194 'dependencies': [ | 196 'dependencies': [ |
195 'app_shell_lib', | 197 'app_shell_lib', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 '<@(_outputs)', | 255 '<@(_outputs)', |
254 ], | 256 ], |
255 'includes': [ | 257 'includes': [ |
256 '../../build/util/version.gypi', | 258 '../../build/util/version.gypi', |
257 ], | 259 ], |
258 }, | 260 }, |
259 ], | 261 ], |
260 }, | 262 }, |
261 ], # targets | 263 ], # targets |
262 } | 264 } |
OLD | NEW |