Chromium Code Reviews| Index: ppapi/native_client/tests/earth/nacl.scons |
| diff --git a/ppapi/native_client/tests/earth/nacl.scons b/ppapi/native_client/tests/earth/nacl.scons |
| index bc98cfe4f5be6f42fee235effd2d0b3167c015cf..07c53ae723889a27264eb609a5ea19fe63d5fb44 100644 |
| --- a/ppapi/native_client/tests/earth/nacl.scons |
| +++ b/ppapi/native_client/tests/earth/nacl.scons |
| @@ -18,7 +18,7 @@ cobj=['pepper_c.c'] |
| c_nexe_name = env.ProgramNameForNmf('earth_c') |
| cnexe = env.ComponentProgram(c_nexe_name, cobj, |
| EXTRA_LIBS=['earthlib', |
| - '${PPAPI_LIBS}', |
| + 'ppapi', |
| 'm', 'pthread']) |
| env.Publish(c_nexe_name, 'run', ['earth_c.html']) |
| @@ -30,8 +30,7 @@ ccobj=['pepper_cc.cc'] |
| cc_nexe_name = env.ProgramNameForNmf('earth_cc') |
| ccnexe = env.ComponentProgram(cc_nexe_name, ccobj, |
| EXTRA_LIBS=['earthlib', |
| - '${PPAPI_LIBS}', |
| - 'ppapi_cpp', |
|
Mark Seaborn
2012/08/22 21:04:32
You dropped ppapi_cpp. Did you mean to drop ppapi
bradn
2012/08/22 21:09:17
Yes, this was a textual error.
Amusingly this one
|
| + 'ppapi', |
| 'm', 'pthread']) |
| env.Publish(cc_nexe_name, 'run', ['earth_cc.html']) |