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

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

Issue 2620203003: Add initial version of captive portal list checking. (Closed)
Patch Set: Fix Android tests Created 3 years, 10 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
« no previous file with comments | « chrome/browser/ssl/ssl_error_handler_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 1708 matching lines...) Expand 10 before | Expand all | Expand 10 after
1719 "../browser/sessions/session_restore_browsertest_chromeos.cc", 1719 "../browser/sessions/session_restore_browsertest_chromeos.cc",
1720 "../browser/sessions/tab_restore_browsertest.cc", 1720 "../browser/sessions/tab_restore_browsertest.cc",
1721 "../browser/site_details_browsertest.cc", 1721 "../browser/site_details_browsertest.cc",
1722 "../browser/ui/ask_google_for_suggestions_dialog_browsertest.cc", 1722 "../browser/ui/ask_google_for_suggestions_dialog_browsertest.cc",
1723 1723
1724 # If this list is used on Android in the future, these browser/speech/* 1724 # If this list is used on Android in the future, these browser/speech/*
1725 # files will probably not be applicable. 1725 # files will probably not be applicable.
1726 "../browser/speech/extension_api/tts_extension_apitest.cc", 1726 "../browser/speech/extension_api/tts_extension_apitest.cc",
1727 "../browser/speech/speech_recognition_browsertest.cc", 1727 "../browser/speech/speech_recognition_browsertest.cc",
1728 "../browser/spellchecker/spellcheck_service_browsertest.cc", 1728 "../browser/spellchecker/spellcheck_service_browsertest.cc",
1729 "../browser/ssl/captive_portal_blocking_page_browsertest.cc",
1730 "../browser/ssl/cert_verifier_browser_test.cc", 1729 "../browser/ssl/cert_verifier_browser_test.cc",
1731 "../browser/ssl/cert_verifier_browser_test.h", 1730 "../browser/ssl/cert_verifier_browser_test.h",
1732 "../browser/ssl/certificate_reporting_test_utils.cc", 1731 "../browser/ssl/certificate_reporting_test_utils.cc",
1733 "../browser/ssl/certificate_reporting_test_utils.h", 1732 "../browser/ssl/certificate_reporting_test_utils.h",
1734 "../browser/ssl/chrome_ssl_host_state_delegate_test.cc", 1733 "../browser/ssl/chrome_ssl_host_state_delegate_test.cc",
1735 "../browser/ssl/security_state_tab_helper_browser_tests.cc", 1734 "../browser/ssl/security_state_tab_helper_browser_tests.cc",
1736 "../browser/ssl/ssl_browser_tests.cc", 1735 "../browser/ssl/ssl_browser_tests.cc",
1737 "../browser/ssl/ssl_client_certificate_selector_test.cc", 1736 "../browser/ssl/ssl_client_certificate_selector_test.cc",
1738 "../browser/ssl/ssl_client_certificate_selector_test.h", 1737 "../browser/ssl/ssl_client_certificate_selector_test.h",
1739 "../browser/storage/durable_storage_browsertest.cc", 1738 "../browser/storage/durable_storage_browsertest.cc",
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
2015 ] 2014 ]
2016 } 2015 }
2017 2016
2018 # TODO(crbug.com/679127): Enable these tests on "mac_views_browser" once it 2017 # TODO(crbug.com/679127): Enable these tests on "mac_views_browser" once it
2019 # is supported. 2018 # is supported.
2020 if (is_linux || is_win) { 2019 if (is_linux || is_win) {
2021 sources += 2020 sources +=
2022 [ "../browser/payments/site_per_process_payments_browsertest.cc" ] 2021 [ "../browser/payments/site_per_process_payments_browsertest.cc" ]
2023 } 2022 }
2024 2023
2024 if (enable_captive_portal_detection) {
2025 sources +=
2026 [ "../browser/ssl/captive_portal_blocking_page_browsertest.cc" ]
2027 }
2025 if (!enable_one_click_signin) { 2028 if (!enable_one_click_signin) {
2026 sources -= [ "../browser/ui/sync/one_click_signin_links_delegate_impl_brow sertest.cc" ] 2029 sources -= [ "../browser/ui/sync/one_click_signin_links_delegate_impl_brow sertest.cc" ]
2027 } 2030 }
2028 if (enable_nacl) { 2031 if (enable_nacl) {
2029 sources += [ 2032 sources += [
2030 "../browser/chrome_service_worker_browsertest.cc", 2033 "../browser/chrome_service_worker_browsertest.cc",
2031 "../browser/extensions/extension_nacl_browsertest.cc", 2034 "../browser/extensions/extension_nacl_browsertest.cc",
2032 "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc", 2035 "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc",
2033 "nacl/nacl_browsertest.cc", 2036 "nacl/nacl_browsertest.cc",
2034 "nacl/nacl_browsertest_uma.cc", 2037 "nacl/nacl_browsertest_uma.cc",
(...skipping 3126 matching lines...) Expand 10 before | Expand all | Expand 10 after
5161 } 5164 }
5162 5165
5163 if (is_win) { 5166 if (is_win) {
5164 loadable_module("conflicts_dll") { 5167 loadable_module("conflicts_dll") {
5165 testonly = true 5168 testonly = true
5166 sources = [ 5169 sources = [
5167 "conflicts/conflicts_dll.cc", 5170 "conflicts/conflicts_dll.cc",
5168 ] 5171 ]
5169 } 5172 }
5170 } 5173 }
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_error_handler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698