summaryrefslogtreecommitdiffstats
path: root/views/run_all_unittests.cc
blob: 90fd4dda1307d6c72bff14705c284856a692c29c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/test/test_suite.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/base/ui_base_paths.h"
#include "views/view.h"

class ViewTestSuite : public base::TestSuite {
 public:
  ViewTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}

 protected:
  virtual void Initialize() {
    base::TestSuite::Initialize();

    ui::RegisterPathProvider();
    ui::ResourceBundle::InitSharedInstance("en-US");

#if defined(OS_LINUX)
    // Disable GPU browser compositor during unit tests.
    views::View::set_use_acceleration_when_possible(false);
#endif
  }
};

int main(int argc, char** argv) {
  return ViewTestSuite(argc, argv).Run();
}