| 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 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1812 } | 1812 } |
| 1813 if (safe_browsing_mode == 1) { | 1813 if (safe_browsing_mode == 1) { |
| 1814 # TODO(sgurun): enable tests for safe_browsing==2. | 1814 # TODO(sgurun): enable tests for safe_browsing==2. |
| 1815 sources += rebase_path( | 1815 sources += rebase_path( |
| 1816 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, | 1816 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, |
| 1817 ".", | 1817 ".", |
| 1818 "//chrome") | 1818 "//chrome") |
| 1819 deps += [ ":test_proto" ] | 1819 deps += [ ":test_proto" ] |
| 1820 } else if (safe_browsing_mode == 2) { | 1820 } else if (safe_browsing_mode == 2) { |
| 1821 sources += rebase_path( | 1821 sources += rebase_path( |
| 1822 chrome_tests_unit_gypi_values.chrome_unit_tests_mobile_safe_browsing
_sources + chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsing_
sources, | 1822 chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsing
_sources, |
| 1823 ".", | 1823 ".", |
| 1824 "//chrome") | 1824 "//chrome") |
| 1825 } | 1825 } |
| 1826 if (enable_autofill_dialog && !is_android) { | 1826 if (enable_autofill_dialog && !is_android) { |
| 1827 sources += rebase_path( | 1827 sources += rebase_path( |
| 1828 chrome_tests_unit_gypi_values.chrome_unit_tests_autofill_dialog_sour
ces, | 1828 chrome_tests_unit_gypi_values.chrome_unit_tests_autofill_dialog_sour
ces, |
| 1829 ".", | 1829 ".", |
| 1830 "//chrome") | 1830 "//chrome") |
| 1831 } | 1831 } |
| 1832 if (enable_plugins) { | 1832 if (enable_plugins) { |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2225 if (is_android) { | 2225 if (is_android) { |
| 2226 android_library("unit_tests_java") { | 2226 android_library("unit_tests_java") { |
| 2227 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2227 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2228 deps = [ | 2228 deps = [ |
| 2229 "//base:base_java", | 2229 "//base:base_java", |
| 2230 "//chrome/android:chrome_java", | 2230 "//chrome/android:chrome_java", |
| 2231 "//content/public/android:content_java", | 2231 "//content/public/android:content_java", |
| 2232 ] | 2232 ] |
| 2233 } | 2233 } |
| 2234 } | 2234 } |
| OLD | NEW |