| 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 1821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1832 } | 1832 } |
| 1833 if (safe_browsing_mode == 1) { | 1833 if (safe_browsing_mode == 1) { |
| 1834 # TODO(sgurun): enable tests for safe_browsing==2. | 1834 # TODO(sgurun): enable tests for safe_browsing==2. |
| 1835 sources += rebase_path( | 1835 sources += rebase_path( |
| 1836 chrome_tests_unit_gypi_values.chrome_unit_tests_full_safe_browsing_s
ources + chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsing_so
urces, | 1836 chrome_tests_unit_gypi_values.chrome_unit_tests_full_safe_browsing_s
ources + chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsing_so
urces, |
| 1837 ".", | 1837 ".", |
| 1838 "//chrome") | 1838 "//chrome") |
| 1839 deps += [ ":test_proto" ] | 1839 deps += [ ":test_proto" ] |
| 1840 } else if (safe_browsing_mode == 2) { | 1840 } else if (safe_browsing_mode == 2) { |
| 1841 sources += rebase_path( | 1841 sources += rebase_path( |
| 1842 chrome_tests_unit_gypi_values.chrome_unit_tests_mobile_safe_browsing
_sources + chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsing_
sources, | 1842 chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsing
_sources, |
| 1843 ".", | 1843 ".", |
| 1844 "//chrome") | 1844 "//chrome") |
| 1845 } | 1845 } |
| 1846 if (enable_autofill_dialog && !is_android) { | 1846 if (enable_autofill_dialog && !is_android) { |
| 1847 sources += rebase_path( | 1847 sources += rebase_path( |
| 1848 chrome_tests_unit_gypi_values.chrome_unit_tests_autofill_dialog_sour
ces, | 1848 chrome_tests_unit_gypi_values.chrome_unit_tests_autofill_dialog_sour
ces, |
| 1849 ".", | 1849 ".", |
| 1850 "//chrome") | 1850 "//chrome") |
| 1851 } | 1851 } |
| 1852 if (enable_plugins) { | 1852 if (enable_plugins) { |
| (...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2243 if (is_android) { | 2243 if (is_android) { |
| 2244 android_library("unit_tests_java") { | 2244 android_library("unit_tests_java") { |
| 2245 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2245 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2246 deps = [ | 2246 deps = [ |
| 2247 "//base:base_java", | 2247 "//base:base_java", |
| 2248 "//chrome/android:chrome_java", | 2248 "//chrome/android:chrome_java", |
| 2249 "//content/public/android:content_java", | 2249 "//content/public/android:content_java", |
| 2250 ] | 2250 ] |
| 2251 } | 2251 } |
| 2252 } | 2252 } |
| OLD | NEW |