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

Side by Side Diff: content/content_tests.gypi

Issue 368903003: Provide gtest printers for ui/gfx geometry types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add gfx_test_support dep to video_encode_accelerator_unittest Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « components/components_tests.gyp ('k') | gpu/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1324 'target_name': 'content_gl_tests', 1324 'target_name': 'content_gl_tests',
1325 'type': '<(gtest_target_type)', 1325 'type': '<(gtest_target_type)',
1326 'dependencies': [ 1326 'dependencies': [
1327 'content.gyp:content_common', 1327 'content.gyp:content_common',
1328 'test_support_content', 1328 'test_support_content',
1329 '../base/base.gyp:test_support_base', 1329 '../base/base.gyp:test_support_base',
1330 '../gpu/gpu.gyp:command_buffer_common', 1330 '../gpu/gpu.gyp:command_buffer_common',
1331 '../testing/gtest.gyp:gtest', 1331 '../testing/gtest.gyp:gtest',
1332 '../third_party/WebKit/public/blink.gyp:blink', 1332 '../third_party/WebKit/public/blink.gyp:blink',
1333 '../ui/base/ui_base.gyp:ui_base', 1333 '../ui/base/ui_base.gyp:ui_base',
1334 '../v8/tools/gyp/v8.gyp:v8',
1335 '../ui/gfx/gfx.gyp:gfx', 1334 '../ui/gfx/gfx.gyp:gfx',
1336 '../ui/gfx/gfx.gyp:gfx_geometry', 1335 '../ui/gfx/gfx.gyp:gfx_geometry',
1336 '../ui/gfx/gfx.gyp:gfx_test_support',
1337 '../ui/gl/gl.gyp:gl', 1337 '../ui/gl/gl.gyp:gl',
1338 '../v8/tools/gyp/v8.gyp:v8',
1338 # The following dependency provides the missing symbol 1339 # The following dependency provides the missing symbol
1339 # HeapProfilerStart in Linux component builds. 1340 # HeapProfilerStart in Linux component builds.
1340 '../webkit/child/webkit_child.gyp:webkit_child', 1341 '../webkit/child/webkit_child.gyp:webkit_child',
1341 ], 1342 ],
1342 'include_dirs': [ 1343 'include_dirs': [
1343 '..', 1344 '..',
1344 ], 1345 ],
1345 'sources': [ 1346 'sources': [
1346 'common/gpu/client/gl_helper_unittest.cc', 1347 'common/gpu/client/gl_helper_unittest.cc',
1347 'common/gpu/client/gpu_in_process_context_tests.cc', 1348 'common/gpu/client/gpu_in_process_context_tests.cc',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
1384 'targets': [ 1385 'targets': [
1385 { 1386 {
1386 'target_name': 'video_decode_accelerator_unittest', 1387 'target_name': 'video_decode_accelerator_unittest',
1387 'type': '<(gtest_target_type)', 1388 'type': '<(gtest_target_type)',
1388 'dependencies': [ 1389 'dependencies': [
1389 '../base/base.gyp:base', 1390 '../base/base.gyp:base',
1390 '../media/media.gyp:media', 1391 '../media/media.gyp:media',
1391 '../testing/gtest.gyp:gtest', 1392 '../testing/gtest.gyp:gtest',
1392 '../ui/base/ui_base.gyp:ui_base', 1393 '../ui/base/ui_base.gyp:ui_base',
1393 '../ui/gfx/gfx.gyp:gfx', 1394 '../ui/gfx/gfx.gyp:gfx',
1395 '../ui/gfx/gfx.gyp:gfx_test_support',
1394 '../ui/gfx/gfx.gyp:gfx_geometry', 1396 '../ui/gfx/gfx.gyp:gfx_geometry',
1395 '../ui/gl/gl.gyp:gl', 1397 '../ui/gl/gl.gyp:gl',
1396 'content.gyp:content', 1398 'content.gyp:content',
1397 ], 1399 ],
1398 'include_dirs': [ 1400 'include_dirs': [
1399 '<(DEPTH)/third_party/khronos', 1401 '<(DEPTH)/third_party/khronos',
1400 ], 1402 ],
1401 'sources': [ 1403 'sources': [
1402 'common/gpu/media/android_video_decode_accelerator_unittest.cc', 1404 'common/gpu/media/android_video_decode_accelerator_unittest.cc',
1403 'common/gpu/media/rendering_helper.h', 1405 'common/gpu/media/rendering_helper.h',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
1482 'target_name': 'video_encode_accelerator_unittest', 1484 'target_name': 'video_encode_accelerator_unittest',
1483 'type': 'executable', 1485 'type': 'executable',
1484 'dependencies': [ 1486 'dependencies': [
1485 '../base/base.gyp:base', 1487 '../base/base.gyp:base',
1486 '../media/media.gyp:media', 1488 '../media/media.gyp:media',
1487 '../media/media.gyp:media_test_support', 1489 '../media/media.gyp:media_test_support',
1488 '../testing/gtest.gyp:gtest', 1490 '../testing/gtest.gyp:gtest',
1489 '../ui/base/ui_base.gyp:ui_base', 1491 '../ui/base/ui_base.gyp:ui_base',
1490 '../ui/gfx/gfx.gyp:gfx', 1492 '../ui/gfx/gfx.gyp:gfx',
1491 '../ui/gfx/gfx.gyp:gfx_geometry', 1493 '../ui/gfx/gfx.gyp:gfx_geometry',
1494 '../ui/gfx/gfx.gyp:gfx_test_support',
1492 '../ui/gl/gl.gyp:gl', 1495 '../ui/gl/gl.gyp:gl',
1493 'content.gyp:content', 1496 'content.gyp:content',
1494 ], 1497 ],
1495 'sources': [ 1498 'sources': [
1496 'common/gpu/media/video_accelerator_unittest_helpers.h', 1499 'common/gpu/media/video_accelerator_unittest_helpers.h',
1497 'common/gpu/media/video_encode_accelerator_unittest.cc', 1500 'common/gpu/media/video_encode_accelerator_unittest.cc',
1498 ], 1501 ],
1499 'include_dirs': [ 1502 'include_dirs': [
1500 '<(DEPTH)/third_party/libva', 1503 '<(DEPTH)/third_party/libva',
1501 '<(DEPTH)/third_party/libyuv', 1504 '<(DEPTH)/third_party/libyuv',
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1842 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1845 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1843 }, 1846 },
1844 ], 1847 ],
1845 }], 1848 }],
1846 ], 1849 ],
1847 }, 1850 },
1848 ], 1851 ],
1849 }], 1852 }],
1850 ], 1853 ],
1851 } 1854 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | gpu/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698