| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  216  |  216  | 
|  217   configs += [ "//build/config:precompiled_headers" ] |  217   configs += [ "//build/config:precompiled_headers" ] | 
|  218  |  218  | 
|  219   public_deps = [ |  219   public_deps = [ | 
|  220     "//gpu/ipc/client:client", |  220     "//gpu/ipc/client:client", | 
|  221   ] |  221   ] | 
|  222  |  222  | 
|  223   deps = [ |  223   deps = [ | 
|  224     "//base", |  224     "//base", | 
|  225     "//components/discardable_memory/client", |  225     "//components/discardable_memory/client", | 
 |  226     "//components/discardable_memory/public/interfaces", | 
|  226     "//components/mime_util", |  227     "//components/mime_util", | 
|  227     "//components/tracing", |  228     "//components/tracing", | 
|  228     "//components/tracing:startup_tracing", |  229     "//components/tracing:startup_tracing", | 
|  229     "//components/webcrypto", |  230     "//components/webcrypto", | 
|  230     "//content/app/resources", |  231     "//content/app/resources", | 
|  231     "//content/app/strings", |  232     "//content/app/strings", | 
|  232     "//content/common", |  233     "//content/common", | 
|  233     "//content/public/common:common_sources", |  234     "//content/public/common:common_sources", | 
|  234     "//crypto:platform", |  235     "//crypto:platform", | 
|  235     "//gpu/command_buffer/client", |  236     "//gpu/command_buffer/client", | 
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  293  |  294  | 
|  294 # See comment at the top of //content/BUILD.gn for how this works. |  295 # See comment at the top of //content/BUILD.gn for how this works. | 
|  295 group("for_content_tests") { |  296 group("for_content_tests") { | 
|  296   visibility = [ "//content/test/*" ] |  297   visibility = [ "//content/test/*" ] | 
|  297   if (!is_component_build) { |  298   if (!is_component_build) { | 
|  298     public_deps = [ |  299     public_deps = [ | 
|  299       ":child", |  300       ":child", | 
|  300     ] |  301     ] | 
|  301   } |  302   } | 
|  302 } |  303 } | 
| OLD | NEW |