Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(669)

Side by Side Diff: chrome/test/BUILD.gn

Issue 1579403002: Move remote_db_manager into the safe_browsing_db component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a gn dep on safe_browsing_db_mobile Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698