| Index: content/BUILD.gn
 | 
| diff --git a/content/BUILD.gn b/content/BUILD.gn
 | 
| index 973a33404e0fe9718abf26c089768d6d65a22ea0..a49a8873ad564258df5c302c5cb55bc14b55559c 100644
 | 
| --- a/content/BUILD.gn
 | 
| +++ b/content/BUILD.gn
 | 
| @@ -9,16 +9,14 @@ config("content_implementation") {
 | 
|    defines = [ "CONTENT_IMPLEMENTATION" ]
 | 
|  }
 | 
|  
 | 
| -content_components = [
 | 
| -  "//content/app",
 | 
| -  "//content/browser",
 | 
| -  "//content/child",
 | 
| +content_shared_components = [
 | 
|    "//content/gpu",
 | 
|    "//content/plugin",
 | 
|    "//content/ppapi_plugin",
 | 
|    "//content/public/app",
 | 
|    "//content/public/browser",
 | 
|    "//content/public/child",
 | 
| +  "//content/public/common",
 | 
|    "//content/public/plugin",
 | 
|    "//content/public/renderer",
 | 
|    "//content/renderer",
 | 
| @@ -27,11 +25,13 @@ content_components = [
 | 
|  
 | 
|  if (is_component_build) {
 | 
|    shared_library("content") {
 | 
| -    deps = content_components
 | 
| +    deps = content_shared_components + [
 | 
| +      "//content/app",
 | 
| +    ]
 | 
|    }
 | 
|  } else {
 | 
|    group("content") {
 | 
| -    deps = content_components
 | 
| +    deps = content_shared_components
 | 
|    }
 | 
|  }
 | 
|  
 | 
| 
 |