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

Side by Side Diff: blimp/test/run_all_unittests.cc

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/bind.h"
6 #include "base/test/launcher/unit_test_launcher.h"
7 #include "base/test/test_suite.h"
8 #include "build/build_config.h"
9 #include "mojo/edk/embedder/embedder.h"
10
11 namespace {
12
13 class BlimpTestSuite : public base::TestSuite {
14 public:
15 BlimpTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}
16
17 private:
18 DISALLOW_COPY_AND_ASSIGN(BlimpTestSuite);
19 };
20
21 } // namespace
22
23 int main(int argc, char** argv) {
24 mojo::edk::Init();
25 BlimpTestSuite test_suite(argc, argv);
26 return base::LaunchUnitTests(
27 argc, argv,
28 base::Bind(&base::TestSuite::Run, base::Unretained(&test_suite)));
29 }
OLDNEW
« no previous file with comments | « blimp/test/impaired_network/test_runner.py ('k') | blimp/test/support/compositor/picture_cache_test_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698