Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(948)

Unified Diff: content/public/gpu/BUILD.gn

Issue 1646853002: Add embedder api for participating in gpu logic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",
]
}

Powered by Google App Engine
This is Rietveld 408576698