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

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

Issue 2503243003: Wire up CertificateReportingService to handle report uploads (Closed)
Patch Set: jialiul, estark comments Created 4 years 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/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 2355 matching lines...) Expand 10 before | Expand all | Expand 10 after
2366 if (toolkit_views) { 2366 if (toolkit_views) {
2367 sources -= [ "../browser/ui/views/select_file_dialog_extension_browserte st.cc" ] 2367 sources -= [ "../browser/ui/views/select_file_dialog_extension_browserte st.cc" ]
2368 } 2368 }
2369 if (is_win || is_linux) { 2369 if (is_win || is_linux) {
2370 sources += 2370 sources +=
2371 [ "../browser/ui/views/ime/input_ime_apitest_nonchromeos.cc" ] 2371 [ "../browser/ui/views/ime/input_ime_apitest_nonchromeos.cc" ]
2372 } 2372 }
2373 } 2373 }
2374 if (safe_browsing_mode == 1) { 2374 if (safe_browsing_mode == 1) {
2375 sources += [ 2375 sources += [
2376 "../browser/safe_browsing/certificate_reporting_service_browsertest.cc",
2376 "../browser/safe_browsing/permission_reporter_browsertest.cc", 2377 "../browser/safe_browsing/permission_reporter_browsertest.cc",
2377 "../browser/safe_browsing/safe_browsing_blocking_page_test.cc", 2378 "../browser/safe_browsing/safe_browsing_blocking_page_test.cc",
2378 "../browser/safe_browsing/safe_browsing_navigation_observer_browsertest. cc", 2379 "../browser/safe_browsing/safe_browsing_navigation_observer_browsertest. cc",
2379 "../browser/safe_browsing/safe_browsing_service_browsertest.cc", 2380 "../browser/safe_browsing/safe_browsing_service_browsertest.cc",
2380 "../renderer/safe_browsing/phishing_classifier_browsertest.cc", 2381 "../renderer/safe_browsing/phishing_classifier_browsertest.cc",
2381 "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc", 2382 "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc",
2382 "../renderer/safe_browsing/phishing_dom_feature_extractor_browsertest.cc ", 2383 "../renderer/safe_browsing/phishing_dom_feature_extractor_browsertest.cc ",
2383 "../renderer/safe_browsing/threat_dom_details_browsertest.cc", 2384 "../renderer/safe_browsing/threat_dom_details_browsertest.cc",
2384 ] 2385 ]
2385 } 2386 }
(...skipping 2709 matching lines...) Expand 10 before | Expand all | Expand 10 after
5095 } 5096 }
5096 5097
5097 if (is_win) { 5098 if (is_win) {
5098 loadable_module("conflicts_dll") { 5099 loadable_module("conflicts_dll") {
5099 testonly = true 5100 testonly = true
5100 sources = [ 5101 sources = [
5101 "conflicts/conflicts_dll.cc", 5102 "conflicts/conflicts_dll.cc",
5102 ] 5103 ]
5103 } 5104 }
5104 } 5105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698