aboutsummaryrefslogtreecommitdiff
path: root/osp/impl/quic/BUILD.gn
blob: 7ad21d49067bf971814d56ed45e7c8767660f362 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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.

source_set("quic") {
  sources = [
    "quic_client.cc",
    "quic_client.h",
    "quic_connection.h",
    "quic_connection_factory.h",
    "quic_server.cc",
    "quic_server.h",
    "quic_service_common.cc",
    "quic_service_common.h",
  ]

  deps = [
    "../../../osp_base",
    "../../../platform",
    "../../public",
  ]
}

source_set("test_support") {
  testonly = true
  sources = [
    "testing/fake_quic_connection.cc",
    "testing/fake_quic_connection.h",
    "testing/fake_quic_connection_factory.cc",
    "testing/fake_quic_connection_factory.h",
    "testing/quic_test_support.cc",
    "testing/quic_test_support.h",
  ]

  deps = [
    "../../../osp_base",
    "../../../platform",
    "../../../third_party/googletest:gmock",
    "../../msgs",
  ]
}