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

Unified Diff: chrome/test/data/nacl/nacl_test_data.gyp

Issue 10958026: Port ppapi_ppb_core nacl_integration test to browser_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix dependancies. Created 8 years, 3 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: chrome/test/data/nacl/nacl_test_data.gyp
diff --git a/chrome/test/data/nacl/nacl_test_data.gyp b/chrome/test/data/nacl/nacl_test_data.gyp
index 73a133abb15bd808a2f228ef262b7fa3f771429a..e5b60d8a75923e7ad434c6893d395e5f6403a4c5 100644
--- a/chrome/test/data/nacl/nacl_test_data.gyp
+++ b/chrome/test/data/nacl/nacl_test_data.gyp
@@ -50,5 +50,48 @@
],
},
},
+ # Legacy NaCl PPAPI interface tests being here.
+ {
+ 'target_name': 'ppapi_test_lib',
+ 'type': 'none',
+ 'variables': {
+ 'nlib_target': 'libppapi_test_lib.a',
+ 'nso_target': 'libppapi_test_lib.so',
+ 'build_newlib': 1,
+ 'build_glibc': 1,
+ 'sources': [
+ # TODO(ncbray) move these files once SCons no longer depends on them.
+ '../../../../ppapi/native_client/tests/ppapi_test_lib/get_browser_interface.cc',
+ '../../../../ppapi/native_client/tests/ppapi_test_lib/internal_utils.cc',
+ '../../../../ppapi/native_client/tests/ppapi_test_lib/module_instance.cc',
+ '../../../../ppapi/native_client/tests/ppapi_test_lib/testable_callback.cc',
+ '../../../../ppapi/native_client/tests/ppapi_test_lib/test_interface.cc',
+ ]
+ },
+ },
+ {
+ 'target_name': 'ppapi_ppb_core',
+ 'type': 'none',
+ 'variables': {
+ 'nexe_target': 'ppapi_ppb_core',
+ 'build_newlib': 1,
+ 'build_glibc': 1,
+ 'link_flags': [
+ '-lppapi',
+ '-lppapi_test_lib',
+ '-lplatform',
+ '-lgio',
+ ],
+ 'sources': [
+ 'ppapi/ppb_core/ppapi_ppb_core.cc',
+ ],
+ 'test_files': [
+ 'ppapi/ppb_core/ppapi_ppb_core.html',
+ ],
+ },
+ 'dependencies': [
+ 'ppapi_test_lib',
+ ],
+ },
],
}
« no previous file with comments | « chrome/test/data/nacl/nacl_browser_test.gypi ('k') | chrome/test/data/nacl/ppapi/ppb_core/ppapi_ppb_core.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698