mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
32 lines
632 B
Plaintext
32 lines
632 B
Plaintext
# Copyright 2015 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.
|
|
|
|
import("//build/config/ui.gni")
|
|
import("//testing/test.gni")
|
|
|
|
# TODO(sky): move everything but switches to services/ui/public/cpp
|
|
source_set("mus_common") {
|
|
sources = [
|
|
"switches.cc",
|
|
"switches.h",
|
|
"types.h",
|
|
"util.h",
|
|
]
|
|
}
|
|
|
|
source_set("task_runner_test_base") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"task_runner_test_base.cc",
|
|
"task_runner_test_base.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//testing/gtest",
|
|
]
|
|
}
|