| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 | 7 |
| 8 if (is_component_build) { | 8 if (is_component_build) { |
| 9 link_target_type = "source_set" | 9 link_target_type = "source_set" |
| 10 } else { | 10 } else { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "blob_storage/blob_consolidation.cc", | 48 "blob_storage/blob_consolidation.cc", |
| 49 "blob_storage/blob_consolidation.h", | 49 "blob_storage/blob_consolidation.h", |
| 50 "blob_storage/blob_message_filter.cc", | 50 "blob_storage/blob_message_filter.cc", |
| 51 "blob_storage/blob_message_filter.h", | 51 "blob_storage/blob_message_filter.h", |
| 52 "blob_storage/blob_transport_controller.cc", | 52 "blob_storage/blob_transport_controller.cc", |
| 53 "blob_storage/blob_transport_controller.h", | 53 "blob_storage/blob_transport_controller.h", |
| 54 "blob_storage/webblobregistry_impl.cc", | 54 "blob_storage/webblobregistry_impl.cc", |
| 55 "blob_storage/webblobregistry_impl.h", | 55 "blob_storage/webblobregistry_impl.h", |
| 56 "browser_font_resource_trusted.cc", | 56 "browser_font_resource_trusted.cc", |
| 57 "browser_font_resource_trusted.h", | 57 "browser_font_resource_trusted.h", |
| 58 "child_discardable_shared_memory_manager.cc", | |
| 59 "child_discardable_shared_memory_manager.h", | |
| 60 "child_gpu_memory_buffer_manager.cc", | 58 "child_gpu_memory_buffer_manager.cc", |
| 61 "child_gpu_memory_buffer_manager.h", | 59 "child_gpu_memory_buffer_manager.h", |
| 62 "child_histogram_message_filter.cc", | 60 "child_histogram_message_filter.cc", |
| 63 "child_histogram_message_filter.h", | 61 "child_histogram_message_filter.h", |
| 64 "child_message_filter.cc", | 62 "child_message_filter.cc", |
| 65 "child_message_filter.h", | 63 "child_message_filter.h", |
| 66 "child_process.cc", | 64 "child_process.cc", |
| 67 "child_process.h", | 65 "child_process.h", |
| 68 "child_resource_message_filter.cc", | 66 "child_resource_message_filter.cc", |
| 69 "child_resource_message_filter.h", | 67 "child_resource_message_filter.h", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 ] | 217 ] |
| 220 | 218 |
| 221 configs += [ "//build/config:precompiled_headers" ] | 219 configs += [ "//build/config:precompiled_headers" ] |
| 222 | 220 |
| 223 public_deps = [ | 221 public_deps = [ |
| 224 "//gpu/ipc/client:client", | 222 "//gpu/ipc/client:client", |
| 225 ] | 223 ] |
| 226 | 224 |
| 227 deps = [ | 225 deps = [ |
| 228 "//base", | 226 "//base", |
| 227 "//components/discardable_memory/client", |
| 229 "//components/mime_util", | 228 "//components/mime_util", |
| 230 "//components/tracing", | 229 "//components/tracing", |
| 231 "//components/tracing:startup_tracing", | 230 "//components/tracing:startup_tracing", |
| 232 "//components/webcrypto", | 231 "//components/webcrypto", |
| 233 "//content/app/resources", | 232 "//content/app/resources", |
| 234 "//content/app/strings", | 233 "//content/app/strings", |
| 235 "//content/common", | 234 "//content/common", |
| 236 "//content/public/common:common_sources", | 235 "//content/public/common:common_sources", |
| 237 "//crypto:platform", | 236 "//crypto:platform", |
| 238 "//gpu/command_buffer/client", | 237 "//gpu/command_buffer/client", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 | 295 |
| 297 # See comment at the top of //content/BUILD.gn for how this works. | 296 # See comment at the top of //content/BUILD.gn for how this works. |
| 298 group("for_content_tests") { | 297 group("for_content_tests") { |
| 299 visibility = [ "//content/test/*" ] | 298 visibility = [ "//content/test/*" ] |
| 300 if (!is_component_build) { | 299 if (!is_component_build) { |
| 301 public_deps = [ | 300 public_deps = [ |
| 302 ":child", | 301 ":child", |
| 303 ] | 302 ] |
| 304 } | 303 } |
| 305 } | 304 } |
| OLD | NEW |