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

Unified Diff: ppapi/ppapi_tests.gypi

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 Android after https://codereview.chromium.org/1478633002 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
« no previous file with comments | « ppapi/BUILD.gn ('k') | ppapi/tests/blink_test_plugin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/ppapi_tests.gypi
diff --git a/ppapi/ppapi_tests.gypi b/ppapi/ppapi_tests.gypi
index 830933ef834fcab5165c0b06a013de7c869a6510..e0c21fb73cbcca6c2c2d9b2e2d32348c20ccfa2e 100644
--- a/ppapi/ppapi_tests.gypi
+++ b/ppapi/ppapi_tests.gypi
@@ -101,6 +101,25 @@
],
},
{
+ # GN version: //ppapi:blink_test_plugin
+ 'target_name': 'blink_test_plugin',
+ 'type': 'loadable_module',
+ 'sources': [
+ 'tests/blink_test_plugin.cc',
+ ],
+ 'dependencies': [
+ 'ppapi.gyp:ppapi_cpp',
+ 'ppapi_internal.gyp:ppapi_shared',
+ ],
+ 'conditions': [
+ ['OS=="mac"', {
+ 'mac_bundle': 1,
+ 'product_name': 'blink_test_plugin',
+ 'product_extension': 'plugin',
+ }],
+ ],
+ },
+ {
# GN version: //ppapi/proxy:test_support
# //ppapi/shared_impl:test_support
'target_name': 'ppapi_unittest_shared',
« no previous file with comments | « ppapi/BUILD.gn ('k') | ppapi/tests/blink_test_plugin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698