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

Unified Diff: native_client_sdk/src/examples/demo/life_simd/example.dsc

Issue 451883002: Update SIMD version of life demo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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: native_client_sdk/src/examples/demo/life_simd/example.dsc
diff --git a/native_client_sdk/src/examples/demo/life_simd/example.dsc b/native_client_sdk/src/examples/demo/life_simd/example.dsc
index a27736eb20faaf35c2f9c485e08eda9620a0d595..fb1f343dc4e226bb256d3905938de973bd72e78c 100644
--- a/native_client_sdk/src/examples/demo/life_simd/example.dsc
+++ b/native_client_sdk/src/examples/demo/life_simd/example.dsc
@@ -2,17 +2,20 @@
'TOOLS': ['pnacl'],
'TARGETS': [
{
- 'NAME' : 'life_simd',
+ 'NAME' : 'life',
'TYPE' : 'main',
'SOURCES' : [
- 'life.c',
+ 'life.cc',
],
'DEPS': ['ppapi_simple', 'nacl_io'],
- 'LIBS': ['ppapi_simple', 'nacl_io', 'ppapi_cpp', 'ppapi', 'pthread']
+ 'LIBS': ['ppapi_simple', 'nacl_io', 'sdk_util', 'ppapi_cpp', 'ppapi', 'pthread']
}
],
+ 'DATA': [
+ 'example.js'
+ ],
'DEST': 'examples/demo',
'NAME': 'life_simd',
- 'TITLE': "Conway's Life (SIMD version)",
+ 'TITLE': "Conway's Life",
'GROUP': 'Demo'
}

Powered by Google App Engine
This is Rietveld 408576698