mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
35 lines
730 B
Plaintext
35 lines
730 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.
|
|
|
|
import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
mojom("mojom") {
|
|
sources = [
|
|
"constants.mojom",
|
|
"secure_channel.mojom",
|
|
]
|
|
|
|
public_deps = [
|
|
"//chromeos/services/device_sync/public/mojom",
|
|
"//mojo/public/mojom/base",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"secure_channel_mojom_traits_unittest.cc",
|
|
]
|
|
|
|
deps = [
|
|
":mojom",
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//chromeos/services/secure_channel/public/cpp/shared",
|
|
"//mojo/public/cpp/test_support:test_utils",
|
|
"//testing/gtest",
|
|
]
|
|
}
|