| 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/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 4195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4206 "ssl/ssl_client_auth_requestor_mock.cc", | 4206 "ssl/ssl_client_auth_requestor_mock.cc", |
| 4207 "ssl/ssl_client_auth_requestor_mock.h", | 4207 "ssl/ssl_client_auth_requestor_mock.h", |
| 4208 "sync/profile_sync_test_util.cc", | 4208 "sync/profile_sync_test_util.cc", |
| 4209 "sync/profile_sync_test_util.h", | 4209 "sync/profile_sync_test_util.h", |
| 4210 ] | 4210 ] |
| 4211 | 4211 |
| 4212 if (safe_browsing_mode != 0) { | 4212 if (safe_browsing_mode != 0) { |
| 4213 # "Safe Browsing Basic" files used for safe browsing in full mode | 4213 # "Safe Browsing Basic" files used for safe browsing in full mode |
| 4214 # (safe_browsing=1) and mobile (=2) | 4214 # (safe_browsing=1) and mobile (=2) |
| 4215 sources += [ | 4215 sources += [ |
| 4216 "safe_browsing/certificate_reporting_service_test_utils.cc", |
| 4217 "safe_browsing/certificate_reporting_service_test_utils.h", |
| 4216 "safe_browsing/mock_permission_report_sender.cc", | 4218 "safe_browsing/mock_permission_report_sender.cc", |
| 4217 "safe_browsing/mock_permission_report_sender.h", | 4219 "safe_browsing/mock_permission_report_sender.h", |
| 4218 ] | 4220 ] |
| 4219 } | 4221 } |
| 4220 | 4222 |
| 4221 configs += [ "//build/config:precompiled_headers" ] | 4223 configs += [ "//build/config:precompiled_headers" ] |
| 4222 | 4224 |
| 4223 public_deps = [ | 4225 public_deps = [ |
| 4224 ":browser", | 4226 ":browser", |
| 4225 "//chrome/browser/ui:test_support", | 4227 "//chrome/browser/ui:test_support", |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4451 # linking all of the test support. | 4453 # linking all of the test support. |
| 4452 static_library("pepper_cdm_test_constants") { | 4454 static_library("pepper_cdm_test_constants") { |
| 4453 testonly = true | 4455 testonly = true |
| 4454 visibility = [ "//chrome/*" ] | 4456 visibility = [ "//chrome/*" ] |
| 4455 sources = [ | 4457 sources = [ |
| 4456 "media/pepper_cdm_test_constants.cc", | 4458 "media/pepper_cdm_test_constants.cc", |
| 4457 "media/pepper_cdm_test_constants.h", | 4459 "media/pepper_cdm_test_constants.h", |
| 4458 ] | 4460 ] |
| 4459 } | 4461 } |
| 4460 } | 4462 } |
| OLD | NEW |