summaryrefslogtreecommitdiff
path: root/chromium/components/task_scheduler_util/common/BUILD.gn
blob: ee178bf8a3b56bf3aaba090cf373bd0bb6bd6e46 (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
# Copyright 2016 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.

static_library("common") {
  sources = [
    "variations_util.cc",
    "variations_util.h",
  ]

  deps = [
    "//base",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "variations_util_unittest.cc",
  ]
  deps = [
    ":common",
    "//base",
    "//components/variations:test_support",
    "//testing/gtest",
  ]
}