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

Side by Side Diff: extensions/extensions.gyp

Issue 797023006: s/app_shell_browsertests/extensions_browsertests/g (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after
1318 # Disable c4267 warnings until we fix size_t to int truncations. 1318 # Disable c4267 warnings until we fix size_t to int truncations.
1319 'msvs_disabled_warnings': [ 4267, ], 1319 'msvs_disabled_warnings': [ 4267, ],
1320 'conditions': [ 1320 'conditions': [
1321 ['OS=="win" and win_use_allocator_shim==1', { 1321 ['OS=="win" and win_use_allocator_shim==1', {
1322 'dependencies': [ 1322 'dependencies': [
1323 '../base/allocator/allocator.gyp:allocator', 1323 '../base/allocator/allocator.gyp:allocator',
1324 ], 1324 ],
1325 }], 1325 }],
1326 ], 1326 ],
1327 }, 1327 },
1328 {
1329 'target_name': 'extensions_browsertests',
1330 'type': '<(gtest_target_type)',
1331 'dependencies': [
1332 ':extensions_test_support',
1333 'shell/app_shell.gyp:app_shell_lib',
1334 # TODO(yoz): find the right deps
1335 '<(DEPTH)/base/base.gyp:test_support_base',
1336 '<(DEPTH)/components/components.gyp:storage_monitor_test_support',
1337 '<(DEPTH)/content/content.gyp:content_app_both',
1338 '<(DEPTH)/content/content_shell_and_tests.gyp:content_browser_test_suppo rt',
1339 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content',
1340 '<(DEPTH)/testing/gmock.gyp:gmock',
1341 '<(DEPTH)/testing/gtest.gyp:gtest',
1342 ],
1343 'defines': [
1344 'HAS_OUT_OF_PROC_TEST_RUNNER',
1345 ],
1346 'sources': [
1347 'browser/api/audio/audio_apitest.cc',
1348 'browser/api/dns/dns_apitest.cc',
1349 'browser/api/hid/hid_apitest.cc',
1350 'browser/api/socket/socket_apitest.cc',
1351 'browser/api/sockets_tcp/sockets_tcp_apitest.cc',
1352 'browser/api/sockets_udp/sockets_udp_apitest.cc',
1353 'browser/api/system_cpu/system_cpu_apitest.cc',
1354 'browser/api/system_display/system_display_apitest.cc',
1355 'browser/api/system_memory/system_memory_apitest.cc',
1356 'browser/api/system_network/system_network_apitest.cc',
1357 'browser/api/system_storage/storage_api_test_util.cc',
1358 'browser/api/system_storage/storage_api_test_util.h',
1359 'browser/api/system_storage/system_storage_apitest.cc',
1360 'browser/api/system_storage/system_storage_eject_apitest.cc',
1361 'browser/api/usb/usb_apitest.cc',
1362 'browser/guest_view/app_view/app_view_apitest.cc',
1363 'browser/guest_view/web_view/web_view_apitest.h',
1364 'browser/guest_view/web_view/web_view_apitest.cc',
1365 'browser/guest_view/web_view/web_view_media_access_apitest.cc',
1366 'browser/updater/update_service_browsertest.cc',
1367 'shell/browser/geolocation/geolocation_apitest.cc',
1368 'shell/browser/shell_browsertest.cc',
1369 'shell/test/shell_apitest.cc',
Yoyo Zhou 2015/01/21 23:47:01 We should think about whether shell/test is still
Ken Rockot(use gerrit already) 2015/01/22 00:22:47 Yeah, I hesitated to leave this as-is, but the lin
1370 'shell/test/shell_apitest.h',
1371 'shell/test/shell_test.cc',
1372 'shell/test/shell_test.h',
1373 'shell/test/shell_test_launcher_delegate.cc',
1374 'shell/test/shell_test_launcher_delegate.h',
1375 'shell/test/shell_tests_main.cc',
1376 ],
1377 'conditions': [
1378 ['OS=="win" and win_use_allocator_shim==1', {
1379 'dependencies': [
1380 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
1381 ],
1382 }],
1383 ['OS=="mac"', {
1384 'dependencies': [
1385 'shell/app_shell.gyp:app_shell', # Needed for App Shell.app's Helpe r.
1386 ],
1387 }],
1388 ],
1389 },
1328 ] 1390 ]
1329 } 1391 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698