| Index: content/public/gpu/BUILD.gn | 
| diff --git a/content/public/plugin/BUILD.gn b/content/public/gpu/BUILD.gn | 
| similarity index 59% | 
| copy from content/public/plugin/BUILD.gn | 
| copy to content/public/gpu/BUILD.gn | 
| index e4c4d3681933cc26923da160a63f76c471202bf9..8de310cab9a5e661a82a8c010e5a7f3538746ff7 100644 | 
| --- a/content/public/plugin/BUILD.gn | 
| +++ b/content/public/gpu/BUILD.gn | 
| @@ -1,30 +1,30 @@ | 
| -# Copyright 2014 The Chromium Authors. All rights reserved. | 
| +# Copyright 2016 The Chromium Authors. All rights reserved. | 
| # Use of this source code is governed by a BSD-style license that can be | 
| # found in the LICENSE file. | 
|  | 
| # See //content/BUILD.gn for how this works. | 
| -group("plugin") { | 
| +group("gpu") { | 
| if (is_component_build) { | 
| public_deps = [ | 
| "//content", | 
| ] | 
| } else { | 
| public_deps = [ | 
| -      ":plugin_sources", | 
| +      ":gpu_sources", | 
| ] | 
| } | 
| } | 
|  | 
| -source_set("plugin_sources") { | 
| +source_set("gpu_sources") { | 
| visibility = [ "//content/*" ] | 
|  | 
| sources = [ | 
| -    "content_plugin_client.h", | 
| +    "content_gpu_client.h", | 
| ] | 
|  | 
| deps = [ | 
| "//base", | 
| -    "//content/plugin", | 
| -    "//content/public/common:common_sources", | 
| +    "//content:export", | 
| +    "//content/gpu:gpu_sources", | 
| ] | 
| } | 
|  |