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

Unified Diff: ppapi/BUILD.gn

Issue 1480303002: Implement a basic PPAPI plugin for Blink layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Mac by removing (hopefully) superfluous DYLD_FRAMEWORK_PATH Created 5 years 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: ppapi/BUILD.gn
diff --git a/ppapi/BUILD.gn b/ppapi/BUILD.gn
index e41fa3553e63b52b00d43cabdc08053fc8985fd8..790a8091550b34d17b792d02b1655fc24717ff6a 100644
--- a/ppapi/BUILD.gn
+++ b/ppapi/BUILD.gn
@@ -67,6 +67,18 @@ shared_library("power_saver_test_plugin") {
]
}
+shared_library("blink_test_plugin") {
+ sources = [
+ "tests/blink_test_plugin.cc",
+ ]
+
+ deps = [
+ "//build/config/sanitizers:deps",
+ "//ppapi/cpp",
+ "//ppapi/shared_impl",
+ ]
+}
+
test("ppapi_unittests") {
sources = [
"host/resource_message_filter_unittest.cc",

Powered by Google App Engine
This is Rietveld 408576698