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

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

Issue 2395663002: Collapse SSLPolicy/SSLPolicyBackend into SSLManager (Closed)
Patch Set: fix test flake Created 4 years, 2 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after
1267 "speech/speech_recognizer_impl.cc", 1267 "speech/speech_recognizer_impl.cc",
1268 "speech/speech_recognizer_impl.h", 1268 "speech/speech_recognizer_impl.h",
1269 "speech/speech_recognizer_impl_android.cc", 1269 "speech/speech_recognizer_impl_android.cc",
1270 "speech/speech_recognizer_impl_android.h", 1270 "speech/speech_recognizer_impl_android.h",
1271 "ssl/ssl_client_auth_handler.cc", 1271 "ssl/ssl_client_auth_handler.cc",
1272 "ssl/ssl_client_auth_handler.h", 1272 "ssl/ssl_client_auth_handler.h",
1273 "ssl/ssl_error_handler.cc", 1273 "ssl/ssl_error_handler.cc",
1274 "ssl/ssl_error_handler.h", 1274 "ssl/ssl_error_handler.h",
1275 "ssl/ssl_manager.cc", 1275 "ssl/ssl_manager.cc",
1276 "ssl/ssl_manager.h", 1276 "ssl/ssl_manager.h",
1277 "ssl/ssl_policy.cc",
1278 "ssl/ssl_policy.h",
1279 "ssl/ssl_policy_backend.cc",
1280 "ssl/ssl_policy_backend.h",
1281 "startup_task_runner.cc", 1277 "startup_task_runner.cc",
1282 "startup_task_runner.h", 1278 "startup_task_runner.h",
1283 "storage_partition_impl.cc", 1279 "storage_partition_impl.cc",
1284 "storage_partition_impl.h", 1280 "storage_partition_impl.h",
1285 "storage_partition_impl_map.cc", 1281 "storage_partition_impl_map.cc",
1286 "storage_partition_impl_map.h", 1282 "storage_partition_impl_map.h",
1287 "streams/stream.cc", 1283 "streams/stream.cc",
1288 "streams/stream.h", 1284 "streams/stream.h",
1289 "streams/stream_context.cc", 1285 "streams/stream_context.cc",
1290 "streams/stream_context.h", 1286 "streams/stream_context.h",
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after
1943 if (!is_component_build) { 1939 if (!is_component_build) {
1944 public_deps = [ 1940 public_deps = [
1945 ":browser", 1941 ":browser",
1946 ] 1942 ]
1947 } else { 1943 } else {
1948 public_deps = [ 1944 public_deps = [
1949 "//third_party/leveldatabase", 1945 "//third_party/leveldatabase",
1950 ] 1946 ]
1951 } 1947 }
1952 } 1948 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698