• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2013 The Flutter 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
5config("benchmark_config") {
6  include_dirs = [ "//third_party/benchmark:benchmark_config" ]
7}
8
9source_set("benchmarking") {
10  testonly = true
11
12  sources = [
13    "benchmarking.cc",
14    "benchmarking.h",
15  ]
16
17  public_deps = [
18    "$flutter_root/fml",
19    "//third_party/benchmark",
20  ]
21
22  public_configs = [
23    "$flutter_root:config",
24    ":benchmark_config",
25  ]
26}
27