| 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 import("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
| 8 import("//third_party/WebKit/public/public_features.gni") | 8 import("//third_party/WebKit/public/public_features.gni") |
| 9 | 9 |
| 10 if (is_component_build) { | 10 if (is_component_build) { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "child_histogram_message_filter.h", | 59 "child_histogram_message_filter.h", |
| 60 "child_message_filter.cc", | 60 "child_message_filter.cc", |
| 61 "child_message_filter.h", | 61 "child_message_filter.h", |
| 62 "child_process.cc", | 62 "child_process.cc", |
| 63 "child_process.h", | 63 "child_process.h", |
| 64 "child_process_sandbox_support_impl_linux.cc", | 64 "child_process_sandbox_support_impl_linux.cc", |
| 65 "child_process_sandbox_support_impl_linux.h", | 65 "child_process_sandbox_support_impl_linux.h", |
| 66 "child_process_sandbox_support_impl_shm_linux.cc", | 66 "child_process_sandbox_support_impl_shm_linux.cc", |
| 67 "child_resource_message_filter.cc", | 67 "child_resource_message_filter.cc", |
| 68 "child_resource_message_filter.h", | 68 "child_resource_message_filter.h", |
| 69 "child_shared_bitmap_manager.cc", | |
| 70 "child_shared_bitmap_manager.h", | |
| 71 "child_thread_impl.cc", | 69 "child_thread_impl.cc", |
| 72 "child_thread_impl.h", | 70 "child_thread_impl.h", |
| 73 "content_child_helpers.cc", | 71 "content_child_helpers.cc", |
| 74 "content_child_helpers.h", | 72 "content_child_helpers.h", |
| 75 "database_util.cc", | 73 "database_util.cc", |
| 76 "database_util.h", | 74 "database_util.h", |
| 77 "db_message_filter.cc", | 75 "db_message_filter.cc", |
| 78 "db_message_filter.h", | 76 "db_message_filter.h", |
| 79 "dwrite_font_proxy/dwrite_font_proxy_init_win.cc", | 77 "dwrite_font_proxy/dwrite_font_proxy_init_win.cc", |
| 80 "dwrite_font_proxy/dwrite_font_proxy_init_win.h", | 78 "dwrite_font_proxy/dwrite_font_proxy_init_win.h", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 214 |
| 217 public_deps = [ | 215 public_deps = [ |
| 218 "//gpu/ipc/client:client", | 216 "//gpu/ipc/client:client", |
| 219 "//services/service_manager/public/interfaces:interfaces_blink", | 217 "//services/service_manager/public/interfaces:interfaces_blink", |
| 220 ] | 218 ] |
| 221 | 219 |
| 222 deps = [ | 220 deps = [ |
| 223 "//base", | 221 "//base", |
| 224 "//components/discardable_memory/client", | 222 "//components/discardable_memory/client", |
| 225 "//components/discardable_memory/public/interfaces", | 223 "//components/discardable_memory/public/interfaces", |
| 224 "//components/display_compositor/child", |
| 226 "//components/mime_util", | 225 "//components/mime_util", |
| 227 "//components/tracing", | 226 "//components/tracing", |
| 228 "//components/tracing:startup_tracing", | 227 "//components/tracing:startup_tracing", |
| 229 "//components/webcrypto", | 228 "//components/webcrypto", |
| 230 "//content/app/resources", | 229 "//content/app/resources", |
| 231 "//content/app/strings", | 230 "//content/app/strings", |
| 232 "//content/common", | 231 "//content/common", |
| 233 "//content/public/common:common_sources", | 232 "//content/public/common:common_sources", |
| 234 "//crypto:platform", | 233 "//crypto:platform", |
| 235 "//gpu/command_buffer/client", | 234 "//gpu/command_buffer/client", |
| (...skipping 60 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 |