Chromium Code Reviews| Index: ui/snapshot/test/run_all_unittests.cc |
| diff --git a/ui/snapshot/test/run_all_unittests.cc b/ui/snapshot/test/run_all_unittests.cc |
| index 1dd759f488301ce05e67dd2ff3160b4db92a1fa7..b2777d89b35e78abcc82ba3d945fac0fc762dac9 100644 |
| --- a/ui/snapshot/test/run_all_unittests.cc |
| +++ b/ui/snapshot/test/run_all_unittests.cc |
| @@ -16,9 +16,11 @@ class NoAtExitBaseTestSuite : public base::TestSuite { |
| } |
| }; |
| +#if !defined(USE_AURA) && defined(OS_ANDROID) |
|
Nico
2013/11/10 05:07:09
Just "if !defined(USE_ARUA)", right? No, OS_ANDROI
hans
2013/11/11 19:29:51
Done. My brain was reading the #endif at line 37 a
|
| int RunTestSuite(int argc, char** argv) { |
| return NoAtExitBaseTestSuite(argc, argv).Run(); |
| } |
| +#endif |
|
Nico
2013/11/10 05:07:09
// defined…
hans
2013/11/11 19:29:51
Done.
|
| } // namespace |