| Index: content/public/gpu/BUILD.gn
|
| diff --git a/content/public/plugin/BUILD.gn b/content/public/gpu/BUILD.gn
|
| similarity index 56%
|
| copy from content/public/plugin/BUILD.gn
|
| copy to content/public/gpu/BUILD.gn
|
| index e4c4d3681933cc26923da160a63f76c471202bf9..d61bbb5366fb253890548b46f6d60c497189372a 100644
|
| --- a/content/public/plugin/BUILD.gn
|
| +++ b/content/public/gpu/BUILD.gn
|
| @@ -1,30 +1,32 @@
|
| -# 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",
|
| + "gpu_service_registry.cc",
|
| + "gpu_service_registry.h",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| - "//content/plugin",
|
| - "//content/public/common:common_sources",
|
| + "//content:export",
|
| + "//content/gpu:gpu_sources",
|
| ]
|
| }
|
|
|