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

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

Issue 2543523002: Implement main CertificateReportingService code and add unit tests. (Closed)
Patch Set: Cleanup 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/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 4180 matching lines...) Expand 10 before | Expand all | Expand 10 after
4191 "ssl/ssl_client_auth_requestor_mock.cc", 4191 "ssl/ssl_client_auth_requestor_mock.cc",
4192 "ssl/ssl_client_auth_requestor_mock.h", 4192 "ssl/ssl_client_auth_requestor_mock.h",
4193 "sync/profile_sync_test_util.cc", 4193 "sync/profile_sync_test_util.cc",
4194 "sync/profile_sync_test_util.h", 4194 "sync/profile_sync_test_util.h",
4195 ] 4195 ]
4196 4196
4197 if (safe_browsing_mode != 0) { 4197 if (safe_browsing_mode != 0) {
4198 # "Safe Browsing Basic" files used for safe browsing in full mode 4198 # "Safe Browsing Basic" files used for safe browsing in full mode
4199 # (safe_browsing=1) and mobile (=2) 4199 # (safe_browsing=1) and mobile (=2)
4200 sources += [ 4200 sources += [
4201 "safe_browsing/certificate_reporting_service_test_utils.cc",
4202 "safe_browsing/certificate_reporting_service_test_utils.h",
4201 "safe_browsing/mock_permission_report_sender.cc", 4203 "safe_browsing/mock_permission_report_sender.cc",
4202 "safe_browsing/mock_permission_report_sender.h", 4204 "safe_browsing/mock_permission_report_sender.h",
4203 ] 4205 ]
4204 } 4206 }
4205 4207
4206 configs += [ "//build/config:precompiled_headers" ] 4208 configs += [ "//build/config:precompiled_headers" ]
4207 4209
4208 public_deps = [ 4210 public_deps = [
4209 ":browser", 4211 ":browser",
4210 "//chrome/browser/ui:test_support", 4212 "//chrome/browser/ui:test_support",
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
4434 # linking all of the test support. 4436 # linking all of the test support.
4435 static_library("pepper_cdm_test_constants") { 4437 static_library("pepper_cdm_test_constants") {
4436 testonly = true 4438 testonly = true
4437 visibility = [ "//chrome/*" ] 4439 visibility = [ "//chrome/*" ]
4438 sources = [ 4440 sources = [
4439 "media/pepper_cdm_test_constants.cc", 4441 "media/pepper_cdm_test_constants.cc",
4440 "media/pepper_cdm_test_constants.h", 4442 "media/pepper_cdm_test_constants.h",
4441 ] 4443 ]
4442 } 4444 }
4443 } 4445 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698