| 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 1787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1798 ] | 1798 ] |
| 1799 } | 1799 } |
| 1800 } | 1800 } |
| 1801 if (safe_browsing_mode == 1) { | 1801 if (safe_browsing_mode == 1) { |
| 1802 # TODO(sgurun): enable tests for safe_browsing==2. | 1802 # TODO(sgurun): enable tests for safe_browsing==2. |
| 1803 sources += rebase_path( | 1803 sources += rebase_path( |
| 1804 chrome_tests_unit_gypi_values.chrome_unit_tests_full_safe_browsing
_sources + chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsing_
sources, | 1804 chrome_tests_unit_gypi_values.chrome_unit_tests_full_safe_browsing
_sources + chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsing_
sources, |
| 1805 ".", | 1805 ".", |
| 1806 "//chrome") | 1806 "//chrome") |
| 1807 deps += [ ":test_proto" ] | 1807 deps += [ ":test_proto" ] |
| 1808 } else if (safe_browsing_mode == 3) { | 1808 } else if (safe_browsing_mode == 2) { |
| 1809 sources += rebase_path( | 1809 sources += rebase_path( |
| 1810 chrome_tests_unit_gypi_values.chrome_unit_tests_mobile_extended_sa
fe_browsing_sources + chrome_tests_unit_gypi_values.chrome_unit_tests_shared_saf
e_browsing_sources, | 1810 chrome_tests_unit_gypi_values.chrome_unit_tests_mobile_safe_browsi
ng_sources + chrome_tests_unit_gypi_values.chrome_unit_tests_shared_safe_browsin
g_sources, |
| 1811 ".", | 1811 ".", |
| 1812 "//chrome") | 1812 "//chrome") |
| 1813 } | 1813 } |
| 1814 if (enable_autofill_dialog && !is_android) { | 1814 if (enable_autofill_dialog && !is_android) { |
| 1815 sources += rebase_path( | 1815 sources += rebase_path( |
| 1816 chrome_tests_unit_gypi_values.chrome_unit_tests_autofill_dialog_so
urces, | 1816 chrome_tests_unit_gypi_values.chrome_unit_tests_autofill_dialog_so
urces, |
| 1817 ".", | 1817 ".", |
| 1818 "//chrome") | 1818 "//chrome") |
| 1819 } | 1819 } |
| 1820 if (enable_plugins) { | 1820 if (enable_plugins) { |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2166 "//third_party/mojo/src/mojo/edk/system", | 2166 "//third_party/mojo/src/mojo/edk/system", |
| 2167 ] | 2167 ] |
| 2168 | 2168 |
| 2169 if (!is_android && use_ash) { | 2169 if (!is_android && use_ash) { |
| 2170 sources += rebase_path( | 2170 sources += rebase_path( |
| 2171 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2171 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 2172 ".", | 2172 ".", |
| 2173 "//chrome") | 2173 "//chrome") |
| 2174 } | 2174 } |
| 2175 } | 2175 } |
| OLD | NEW |