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

Side by Side Diff: extensions/shell/app_shell.gyp

Issue 695613002: Move the USB API tests into app_shell_browsertests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'target_name': 'app_shell_browsertests', 178 'target_name': 'app_shell_browsertests',
179 'type': '<(gtest_target_type)', 179 'type': '<(gtest_target_type)',
180 'dependencies': [ 180 'dependencies': [
181 'app_shell_lib', 181 'app_shell_lib',
182 # TODO(yoz): find the right deps 182 # TODO(yoz): find the right deps
183 '<(DEPTH)/base/base.gyp:test_support_base', 183 '<(DEPTH)/base/base.gyp:test_support_base',
184 '<(DEPTH)/content/content.gyp:content_app_both', 184 '<(DEPTH)/content/content.gyp:content_app_both',
185 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo rt', 185 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo rt',
186 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', 186 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content',
187 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', 187 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support',
188 '<(DEPTH)/testing/gmock.gyp:gmock',
188 '<(DEPTH)/testing/gtest.gyp:gtest', 189 '<(DEPTH)/testing/gtest.gyp:gtest',
189 ], 190 ],
190 'defines': [ 191 'defines': [
191 'HAS_OUT_OF_PROC_TEST_RUNNER', 192 'HAS_OUT_OF_PROC_TEST_RUNNER',
192 ], 193 ],
193 'sources': [ 194 'sources': [
194 # TODO(yoz): Refactor once we have a second test target. 195 # TODO(yoz): Refactor once we have a second test target.
195 # TODO(yoz): Something is off here; should this .gyp file be 196 # TODO(yoz): Something is off here; should this .gyp file be
196 # in the parent directory? Test target extensions_browsertests? 197 # in the parent directory? Test target extensions_browsertests?
197 '../browser/api/dns/dns_apitest.cc', 198 '../browser/api/dns/dns_apitest.cc',
198 '../browser/api/socket/socket_apitest.cc', 199 '../browser/api/socket/socket_apitest.cc',
199 '../browser/api/sockets_tcp/sockets_tcp_apitest.cc', 200 '../browser/api/sockets_tcp/sockets_tcp_apitest.cc',
200 '../browser/api/sockets_udp/sockets_udp_apitest.cc', 201 '../browser/api/sockets_udp/sockets_udp_apitest.cc',
202 '../browser/api/usb/usb_apitest.cc',
201 '../browser/guest_view/web_view/web_view_apitest.h', 203 '../browser/guest_view/web_view/web_view_apitest.h',
202 '../browser/guest_view/web_view/web_view_apitest.cc', 204 '../browser/guest_view/web_view/web_view_apitest.cc',
203 '../browser/guest_view/web_view/web_view_media_access_apitest.cc', 205 '../browser/guest_view/web_view/web_view_media_access_apitest.cc',
204 'browser/shell_browsertest.cc', 206 'browser/shell_browsertest.cc',
205 'test/shell_apitest.cc', 207 'test/shell_apitest.cc',
206 'test/shell_apitest.h', 208 'test/shell_apitest.h',
207 'test/shell_test.cc', 209 'test/shell_test.cc',
208 'test/shell_test.h', 210 'test/shell_test.h',
209 'test/shell_test_launcher_delegate.cc', 211 'test/shell_test_launcher_delegate.cc',
210 'test/shell_test_launcher_delegate.h', 212 'test/shell_test_launcher_delegate.h',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 '<@(_outputs)', 293 '<@(_outputs)',
292 ], 294 ],
293 'includes': [ 295 'includes': [
294 '../../build/util/version.gypi', 296 '../../build/util/version.gypi',
295 ], 297 ],
296 }, 298 },
297 ], 299 ],
298 }, 300 },
299 ], # targets 301 ], # targets
300 } 302 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698