mirror of
https://github.com/encounter/engine.git
synced 2026-03-30 11:09:55 -07:00
1c9457cedc
This reverts commit bd8c5b135e.
Reverts flutter/engine#8656
Reason: https://github.com/flutter/engine/pull/8656 seems to break the framework windows tests and the engine roll (see https://cirrus-ci.com/task/4704667236827136 and https://github.com/flutter/flutter/pull/31330). The failure has been consistent for 7 consecutive engine-to-framework auto-rolls.
TBR: @chinmaygarde
23 lines
529 B
C++
23 lines
529 B
C++
// Copyright 2013 The Flutter 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 "benchmarking.h"
|
|
|
|
#include "flutter/fml/icu_util.h"
|
|
|
|
namespace benchmarking {
|
|
|
|
int Main(int argc, char** argv) {
|
|
benchmark::Initialize(&argc, argv);
|
|
fml::icu::InitializeICU("icudtl.dat");
|
|
::benchmark::RunSpecifiedBenchmarks();
|
|
return 0;
|
|
}
|
|
|
|
} // namespace benchmarking
|
|
|
|
int main(int argc, char** argv) {
|
|
return benchmarking::Main(argc, argv);
|
|
}
|