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

Unified Diff: tools/relocation_packer/src/run_all_unittests.cc

Issue 310483003: Add a host tool to pack R_ARM_RELATIVE relocations in libchrome.<ver>.so. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove binary test data files, dcommit separately. Created 6 years, 6 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
« no previous file with comments | « tools/relocation_packer/src/packer_unittest.cc ('k') | tools/relocation_packer/src/run_length_encoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/relocation_packer/src/run_all_unittests.cc
diff --git a/ui/native_theme/native_theme_observer.cc b/tools/relocation_packer/src/run_all_unittests.cc
similarity index 53%
copy from ui/native_theme/native_theme_observer.cc
copy to tools/relocation_packer/src/run_all_unittests.cc
index f516a762027fccab32d569f2466d82c65252c104..ec5eb9a3d0d28a12b56aec282aad118cb10e1e51 100644
--- a/ui/native_theme/native_theme_observer.cc
+++ b/tools/relocation_packer/src/run_all_unittests.cc
@@ -2,10 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "ui/native_theme/native_theme_observer.h"
+#include "testing/gtest/include/gtest/gtest.h"
-namespace ui {
-
-NativeThemeObserver::~NativeThemeObserver() {}
-
-} // namespace ui
+int main(int argc, char** argv) {
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}
« no previous file with comments | « tools/relocation_packer/src/packer_unittest.cc ('k') | tools/relocation_packer/src/run_length_encoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698