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

Unified Diff: gpu/blink/BUILD.gn

Issue 761243002: Extract WebGraphicsContext3DImpl from webkit/common/gpu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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: gpu/blink/BUILD.gn
diff --git a/gpu/blink/BUILD.gn b/gpu/blink/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..515ffce076dbd2a75e70a291226b9a7daf14f871
--- /dev/null
+++ b/gpu/blink/BUILD.gn
@@ -0,0 +1,23 @@
+# Copyright 2014 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.
+
+# GYP version: //gpu/blink/gpu_blink.gyp:gpu_blink
+component("blink") {
+ output_name = "gpu_blink"
+
+ deps = [
+ "//base",
+ "//gpu",
+ "//gpu/command_buffer/client:gles2_implementation",
+ "//gpu/command_buffer/client:gles2_c_lib",
+ "//gpu/skia_bindings",
piman 2014/12/01 18:32:05 Do you need these last 2 dependencies?
+ "//third_party/WebKit/public:blink",
+ ]
+
+ defines = [ "GPU_BLINK_IMPLEMENTATION" ]
+
+ sources = [
+ "gpu_blink_export.h",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698