| OLD | NEW |
| 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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 ], | 814 ], |
| 815 'content_unittests_plugin_webrtc_sources': [ | 815 'content_unittests_plugin_webrtc_sources': [ |
| 816 'renderer/media/pepper_to_video_track_adapter_unittest.cc', | 816 'renderer/media/pepper_to_video_track_adapter_unittest.cc', |
| 817 'renderer/media/video_track_to_pepper_adapter_unittest.cc', | 817 'renderer/media/video_track_to_pepper_adapter_unittest.cc', |
| 818 ], | 818 ], |
| 819 'content_unittests_android_sources': [ | 819 'content_unittests_android_sources': [ |
| 820 'browser/android/java/gin_java_method_invocation_helper_unittest.cc', | 820 'browser/android/java/gin_java_method_invocation_helper_unittest.cc', |
| 821 'browser/android/java/java_type_unittest.cc', | 821 'browser/android/java/java_type_unittest.cc', |
| 822 'browser/android/java/jni_helper_unittest.cc', | 822 'browser/android/java/jni_helper_unittest.cc', |
| 823 'browser/android/url_request_content_job_unittest.cc', | 823 'browser/android/url_request_content_job_unittest.cc', |
| 824 'common/gpu/client/gpu_memory_buffer_impl_surface_texture_unittest.cc', | |
| 825 'renderer/java/gin_java_bridge_value_converter_unittest.cc', | 824 'renderer/java/gin_java_bridge_value_converter_unittest.cc', |
| 826 'renderer/media/android/webmediasession_android_unittest.cc', | 825 'renderer/media/android/webmediasession_android_unittest.cc', |
| 827 ], | 826 ], |
| 828 }, | 827 }, |
| 829 'targets': [ | 828 'targets': [ |
| 830 { | 829 { |
| 831 # GN version: //content/test:test_support | 830 # GN version: //content/test:test_support |
| 832 'target_name': 'test_support_content', | 831 'target_name': 'test_support_content', |
| 833 'type': 'static_library', | 832 'type': 'static_library', |
| 834 'dependencies': [ | 833 'dependencies': [ |
| (...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1507 ] | 1506 ] |
| 1508 }], | 1507 }], |
| 1509 ['enable_web_speech == 1', { | 1508 ['enable_web_speech == 1', { |
| 1510 'sources': [ '<@(content_browsertests_speech_sources)' ], | 1509 'sources': [ '<@(content_browsertests_speech_sources)' ], |
| 1511 }], | 1510 }], |
| 1512 ['branding != "Chrome"', { | 1511 ['branding != "Chrome"', { |
| 1513 'sources': [ '<@(content_browsertests_unofficial_build_sources)' ], | 1512 'sources': [ '<@(content_browsertests_unofficial_build_sources)' ], |
| 1514 }], | 1513 }], |
| 1515 ], | 1514 ], |
| 1516 }, | 1515 }, |
| 1517 { | |
| 1518 # GN version: //content/test:content_gl_tests | |
| 1519 'target_name': 'content_gl_tests', | |
| 1520 'type': '<(gtest_target_type)', | |
| 1521 'dependencies': [ | |
| 1522 'content.gyp:content_common', | |
| 1523 'test_support_content', | |
| 1524 '../base/base.gyp:test_support_base', | |
| 1525 '../gpu/gpu.gyp:command_buffer_common', | |
| 1526 '../testing/gtest.gyp:gtest', | |
| 1527 '../third_party/WebKit/public/blink.gyp:blink', | |
| 1528 '../ui/base/ui_base.gyp:ui_base', | |
| 1529 '../ui/gfx/gfx.gyp:gfx', | |
| 1530 '../ui/gfx/gfx.gyp:gfx_geometry', | |
| 1531 '../ui/gfx/gfx.gyp:gfx_test_support', | |
| 1532 '../ui/gl/gl.gyp:gl', | |
| 1533 '../ui/gl/gl.gyp:gl_test_support', | |
| 1534 '../v8/src/v8.gyp:v8', | |
| 1535 ], | |
| 1536 'include_dirs': [ | |
| 1537 '..', | |
| 1538 ], | |
| 1539 'sources': [ | |
| 1540 'common/gpu/client/gpu_context_tests.h', | |
| 1541 'common/gpu/client/gpu_in_process_context_tests.cc', | |
| 1542 'test/run_all_gl_tests.cc', | |
| 1543 ], | |
| 1544 'conditions': [ | |
| 1545 ['OS=="android"', { | |
| 1546 'dependencies': [ | |
| 1547 '../testing/android/native_test.gyp:native_test_native_code', | |
| 1548 ], | |
| 1549 }, { | |
| 1550 'dependencies': [ | |
| 1551 # Runtime dependencis. | |
| 1552 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | |
| 1553 '../third_party/mesa/mesa.gyp:osmesa', | |
| 1554 ], | |
| 1555 }], | |
| 1556 ], | |
| 1557 }, | |
| 1558 ], | 1516 ], |
| 1559 'conditions': [ | 1517 'conditions': [ |
| 1560 ['test_isolation_mode != "noop"', { | 1518 ['test_isolation_mode != "noop"', { |
| 1561 'targets': [ | 1519 'targets': [ |
| 1562 { | 1520 { |
| 1563 # GN: //content/test:content_site_isolation_browsertests_run | 1521 # GN: //content/test:content_site_isolation_browsertests_run |
| 1564 'target_name': 'content_site_isolation_browsertests_run', | 1522 'target_name': 'content_site_isolation_browsertests_run', |
| 1565 'type': 'none', | 1523 'type': 'none', |
| 1566 'dependencies': [ | 1524 'dependencies': [ |
| 1567 'content_browsertests_run', | 1525 'content_browsertests_run', |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1604 ], | 1562 ], |
| 1605 }, | 1563 }, |
| 1606 { | 1564 { |
| 1607 'target_name': 'telemetry_base', | 1565 'target_name': 'telemetry_base', |
| 1608 'type': 'none', | 1566 'type': 'none', |
| 1609 'dependencies': [ | 1567 'dependencies': [ |
| 1610 '../third_party/catapult/telemetry/telemetry.gyp:bitmaptools#host', | 1568 '../third_party/catapult/telemetry/telemetry.gyp:bitmaptools#host', |
| 1611 ], | 1569 ], |
| 1612 }, | 1570 }, |
| 1613 ], | 1571 ], |
| 1614 'conditions': [ | |
| 1615 ['archive_gpu_tests==1', { | |
| 1616 'targets': [ | |
| 1617 { | |
| 1618 # GN: content/test:content_gl_tests_run | |
| 1619 'target_name': 'content_gl_tests_run', | |
| 1620 'type': 'none', | |
| 1621 'dependencies': [ | |
| 1622 'content_shell_and_tests.gyp:content_gl_tests', | |
| 1623 ], | |
| 1624 'includes': [ | |
| 1625 '../build/isolate.gypi', | |
| 1626 ], | |
| 1627 'sources': [ | |
| 1628 'content_gl_tests.isolate', | |
| 1629 ], | |
| 1630 }, | |
| 1631 ], | |
| 1632 }], | |
| 1633 ], | |
| 1634 }], | 1572 }], |
| 1635 ['chromeos==1 or OS=="win" or OS=="android"', { | 1573 ['chromeos==1 or OS=="win" or OS=="android"', { |
| 1636 'targets': [ | 1574 'targets': [ |
| 1637 { | 1575 { |
| 1638 # TODO(GYP): Port Windows and ChromeOS logic. | 1576 # TODO(GYP): Port Windows and ChromeOS logic. |
| 1639 # GN: //content/test:video_decode_accelerator_unittest | 1577 # GN: //content/test:video_decode_accelerator_unittest |
| 1640 'target_name': 'video_decode_accelerator_unittest', | 1578 'target_name': 'video_decode_accelerator_unittest', |
| 1641 'type': '<(gtest_target_type)', | 1579 'type': '<(gtest_target_type)', |
| 1642 'dependencies': [ | 1580 'dependencies': [ |
| 1643 '../base/base.gyp:base', | 1581 '../base/base.gyp:base', |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1806 'include_dirs': [ | 1744 'include_dirs': [ |
| 1807 '<(DEPTH)/third_party/libva', | 1745 '<(DEPTH)/third_party/libva', |
| 1808 '<(DEPTH)/third_party/libyuv', | 1746 '<(DEPTH)/third_party/libyuv', |
| 1809 ], | 1747 ], |
| 1810 } | 1748 } |
| 1811 ] | 1749 ] |
| 1812 }], | 1750 }], |
| 1813 ['OS == "android"', { | 1751 ['OS == "android"', { |
| 1814 'targets': [ | 1752 'targets': [ |
| 1815 { | 1753 { |
| 1816 # GN: //content/test:content_gl_tests | |
| 1817 'target_name': 'content_gl_tests_apk', | |
| 1818 'type': 'none', | |
| 1819 'dependencies': [ | |
| 1820 'content_gl_tests', | |
| 1821 'content_java_test_support', | |
| 1822 ], | |
| 1823 'variables': { | |
| 1824 'test_suite_name': 'content_gl_tests', | |
| 1825 }, | |
| 1826 'includes': [ | |
| 1827 '../build/apk_test.gypi', | |
| 1828 ], | |
| 1829 }, | |
| 1830 { | |
| 1831 # GN: //content/test:content_unittests | 1754 # GN: //content/test:content_unittests |
| 1832 'target_name': 'content_unittests_apk', | 1755 'target_name': 'content_unittests_apk', |
| 1833 'type': 'none', | 1756 'type': 'none', |
| 1834 'dependencies': [ | 1757 'dependencies': [ |
| 1835 'content.gyp:content_java', | 1758 'content.gyp:content_java', |
| 1836 'content_unittests', | 1759 'content_unittests', |
| 1837 ], | 1760 ], |
| 1838 'conditions': [ | 1761 'conditions': [ |
| 1839 ['v8_use_external_startup_data==1', { | 1762 ['v8_use_external_startup_data==1', { |
| 1840 'dependencies': [ | 1763 'dependencies': [ |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2175 'content_unittests_apk.isolate', | 2098 'content_unittests_apk.isolate', |
| 2176 ], | 2099 ], |
| 2177 }, | 2100 }, |
| 2178 ], | 2101 ], |
| 2179 }, | 2102 }, |
| 2180 ], | 2103 ], |
| 2181 ], | 2104 ], |
| 2182 }], | 2105 }], |
| 2183 ], | 2106 ], |
| 2184 } | 2107 } |
| OLD | NEW |