| 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 # should be deleted and this line removed. See the | 363 # should be deleted and this line removed. See the |
| 364 # chrome_extensions_interactive_uitests target for more. | 364 # chrome_extensions_interactive_uitests target for more. |
| 365 deps += [ "//extensions:chrome_extensions_interactive_uitests" ] | 365 deps += [ "//extensions:chrome_extensions_interactive_uitests" ] |
| 366 | 366 |
| 367 # Runtime dependencies | 367 # Runtime dependencies |
| 368 data_deps = [ | 368 data_deps = [ |
| 369 "//ppapi:ppapi_tests", | 369 "//ppapi:ppapi_tests", |
| 370 "//third_party/mesa:osmesa", | 370 "//third_party/mesa:osmesa", |
| 371 ] | 371 ] |
| 372 | 372 |
| 373 if (is_mac) { |
| 374 sources += [ "../browser/task_manager/task_manager_browsertest_util.cc" ] |
| 375 } |
| 376 |
| 373 if (toolkit_views) { | 377 if (toolkit_views) { |
| 374 sources += rebase_path( | 378 sources += rebase_path( |
| 375 chrome_tests_gypi_values.chrome_interactive_ui_test_views_sources, | 379 chrome_tests_gypi_values.chrome_interactive_ui_test_views_sources, |
| 376 ".", | 380 ".", |
| 377 "//chrome") | 381 "//chrome") |
| 378 deps += [ | 382 deps += [ |
| 379 "//ui/views", | 383 "//ui/views", |
| 380 "//ui/views:test_support", | 384 "//ui/views:test_support", |
| 381 "//ui/views/controls/webview:test_support", | 385 "//ui/views/controls/webview:test_support", |
| 382 ] | 386 ] |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 875 "$root_out_dir/test_case.html.mock-http-headers", | 879 "$root_out_dir/test_case.html.mock-http-headers", |
| 876 "$root_out_dir/test_data/", | 880 "$root_out_dir/test_data/", |
| 877 "$root_out_dir/test_page.css", | 881 "$root_out_dir/test_page.css", |
| 878 "$root_out_dir/test_page.css.mock-http-headers", | 882 "$root_out_dir/test_page.css.mock-http-headers", |
| 879 "$root_out_dir/test_url_loader_data/", | 883 "$root_out_dir/test_url_loader_data/", |
| 880 ] | 884 ] |
| 881 if (is_win) { | 885 if (is_win) { |
| 882 data += [ "$root_out_dir/chrome_200_percent.pak" ] | 886 data += [ "$root_out_dir/chrome_200_percent.pak" ] |
| 883 } | 887 } |
| 884 | 888 |
| 889 if (is_mac) { |
| 890 sources += rebase_path( |
| 891 chrome_tests_gypi_values.chrome_browser_tests_old_task_manager_mac
osx_sources, |
| 892 ".", |
| 893 "//chrome") |
| 894 } |
| 895 |
| 885 deps = [ | 896 deps = [ |
| 886 ":browser_tests_js_webui", | 897 ":browser_tests_js_webui", |
| 887 ":sync_integration_test_support", | 898 ":sync_integration_test_support", |
| 888 ":test_support", | 899 ":test_support", |
| 889 ":test_support_ui", | 900 ":test_support_ui", |
| 890 "//base", | 901 "//base", |
| 891 "//base:i18n", | 902 "//base:i18n", |
| 892 "//base/test:test_support", | 903 "//base/test:test_support", |
| 893 "//chrome:browser_tests_pak", | 904 "//chrome:browser_tests_pak", |
| 894 "//chrome:packed_extra_resources", | 905 "//chrome:packed_extra_resources", |
| (...skipping 944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1839 "//build/linux:gio", | 1850 "//build/linux:gio", |
| 1840 "//chrome/browser/ui/libgtk2ui", | 1851 "//chrome/browser/ui/libgtk2ui", |
| 1841 ] | 1852 ] |
| 1842 } | 1853 } |
| 1843 | 1854 |
| 1844 if (enable_task_manager) { | 1855 if (enable_task_manager) { |
| 1845 sources += rebase_path( | 1856 sources += rebase_path( |
| 1846 chrome_tests_unit_gypi_values.chrome_unit_tests_task_manager_sources
, | 1857 chrome_tests_unit_gypi_values.chrome_unit_tests_task_manager_sources
, |
| 1847 ".", | 1858 ".", |
| 1848 "//chrome") | 1859 "//chrome") |
| 1860 |
| 1861 if (is_mac) { |
| 1862 sources += rebase_path( |
| 1863 chrome_tests_unit_gypi_values.chrome_unit_tests_old_task_manager_m
acosx_sources, |
| 1864 ".", |
| 1865 "//chrome") |
| 1866 } |
| 1849 } | 1867 } |
| 1850 if (enable_mdns) { | 1868 if (enable_mdns) { |
| 1851 sources += rebase_path( | 1869 sources += rebase_path( |
| 1852 chrome_tests_unit_gypi_values.chrome_unit_tests_mdns_sources, | 1870 chrome_tests_unit_gypi_values.chrome_unit_tests_mdns_sources, |
| 1853 ".", | 1871 ".", |
| 1854 "//chrome") | 1872 "//chrome") |
| 1855 } | 1873 } |
| 1856 if (enable_service_discovery) { | 1874 if (enable_service_discovery) { |
| 1857 sources += rebase_path( | 1875 sources += rebase_path( |
| 1858 chrome_tests_unit_gypi_values.chrome_unit_tests_service_discovery_so
urces, | 1876 chrome_tests_unit_gypi_values.chrome_unit_tests_service_discovery_so
urces, |
| (...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2293 if (is_android) { | 2311 if (is_android) { |
| 2294 android_library("unit_tests_java") { | 2312 android_library("unit_tests_java") { |
| 2295 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2313 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2296 deps = [ | 2314 deps = [ |
| 2297 "//base:base_java", | 2315 "//base:base_java", |
| 2298 "//chrome/android:chrome_java", | 2316 "//chrome/android:chrome_java", |
| 2299 "//content/public/android:content_java", | 2317 "//content/public/android:content_java", |
| 2300 ] | 2318 ] |
| 2301 } | 2319 } |
| 2302 } | 2320 } |
| OLD | NEW |