mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
34 lines
759 B
Plaintext
34 lines
759 B
Plaintext
# Copyright 2018 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.
|
|
|
|
assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
|
|
|
|
source_set("cpp") {
|
|
sources = [
|
|
"service_connection.cc",
|
|
"service_connection.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//chromeos",
|
|
"//chromeos/services/machine_learning/public/mojom",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
sources = [
|
|
"service_connection_unittest.cc",
|
|
]
|
|
deps = [
|
|
":cpp",
|
|
"//base/test:test_support",
|
|
"//chromeos",
|
|
"//chromeos/services/machine_learning/public/mojom",
|
|
"//mojo/core/embedder",
|
|
"//mojo/public/cpp/bindings",
|
|
"//testing/gtest",
|
|
]
|
|
}
|