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 1592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1603 "//ui/resources", | 1603 "//ui/resources", |
1604 ] | 1604 ] |
1605 data_deps = [] | 1605 data_deps = [] |
1606 | 1606 |
1607 # TODO(GYP) Windows stuff | 1607 # TODO(GYP) Windows stuff |
1608 # ['incremental_chrome_dll==1', { | 1608 # ['incremental_chrome_dll==1', { |
1609 # 'UseLibraryDependencyInputs': "true", | 1609 # 'UseLibraryDependencyInputs': "true", |
1610 | 1610 |
1611 if (!is_ios) { | 1611 if (!is_ios) { |
1612 deps += [ | 1612 deps += [ |
1613 ":unit_tests_js", | |
1614 "//components/autofill/content/browser/wallet:test_support", | 1613 "//components/autofill/content/browser/wallet:test_support", |
1615 "//components/autofill/content/renderer:test_support", | 1614 "//components/autofill/content/renderer:test_support", |
1616 "//components/data_reduction_proxy/core/browser:test_support", | 1615 "//components/data_reduction_proxy/core/browser:test_support", |
1617 "//components/data_use_measurement/core", | 1616 "//components/data_use_measurement/core", |
1618 "//components/metrics/proto", | 1617 "//components/metrics/proto", |
1619 "//components/safe_browsing_db", | 1618 "//components/safe_browsing_db", |
1620 "//components/safe_json:test_support", | 1619 "//components/safe_json:test_support", |
1621 "//components/strings", | 1620 "//components/strings", |
1622 "//components/webdata_services:test_support", | 1621 "//components/webdata_services:test_support", |
1623 "//content/app/resources", | 1622 "//content/app/resources", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1659 } else { | 1658 } else { |
1660 sources += rebase_path( | 1659 sources += rebase_path( |
1661 chrome_tests_unit_gypi_values.chrome_unit_tests_non_android_sources, | 1660 chrome_tests_unit_gypi_values.chrome_unit_tests_non_android_sources, |
1662 ".", | 1661 ".", |
1663 "//chrome") | 1662 "//chrome") |
1664 sources -= | 1663 sources -= |
1665 [ "../browser/download/download_request_infobar_delegate_unittest.cc" ] | 1664 [ "../browser/download/download_request_infobar_delegate_unittest.cc" ] |
1666 } | 1665 } |
1667 | 1666 |
1668 if (!is_android && !is_ios) { | 1667 if (!is_android && !is_ios) { |
| 1668 deps += [ ":unit_tests_js" ] |
1669 sources += rebase_path( | 1669 sources += rebase_path( |
1670 chrome_tests_unit_gypi_values.chrome_unit_tests_non_mobile_sources, | 1670 chrome_tests_unit_gypi_values.chrome_unit_tests_non_mobile_sources, |
1671 ".", | 1671 ".", |
1672 "//chrome") | 1672 "//chrome") |
1673 } | 1673 } |
1674 | 1674 |
1675 if (is_ios || is_chromeos) { | 1675 if (is_ios || is_chromeos) { |
1676 sources -= [ "../browser/signin/chrome_signin_status_metrics_provider_delega
te_unittest.cc" ] | 1676 sources -= [ "../browser/signin/chrome_signin_status_metrics_provider_delega
te_unittest.cc" ] |
1677 } | 1677 } |
1678 if (enable_background) { | 1678 if (enable_background) { |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2231 if (is_android) { | 2231 if (is_android) { |
2232 android_library("unit_tests_java") { | 2232 android_library("unit_tests_java") { |
2233 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2233 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
2234 deps = [ | 2234 deps = [ |
2235 "//base:base_java", | 2235 "//base:base_java", |
2236 "//chrome/android:chrome_java", | 2236 "//chrome/android:chrome_java", |
2237 "//content/public/android:content_java", | 2237 "//content/public/android:content_java", |
2238 ] | 2238 ] |
2239 } | 2239 } |
2240 } | 2240 } |
OLD | NEW |