summaryrefslogtreecommitdiff
path: root/chromium/ios/web/common/BUILD.gn
blob: a1561641ae5234f88b97533bdecc81ff44b3a620 (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
42
43
44
45
46
47
48
49
50
51
# Copyright 2019 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("//ios/build/config.gni")

source_set("common") {
  sources = [
    "crw_content_view.h",
    "crw_web_view_content_view.h",
    "crw_web_view_content_view.mm",
    "features.h",
    "features.mm",
    "origin_util.h",
    "origin_util.mm",
    "referrer_util.cc",
    "referrer_util.h",
    "url_util.cc",
    "url_util.h",
  ]

  deps = [
    "//base",
    "//ios/web/public:referrer",
    "//net",
    "//url",
  ]

  libs = [ "UIKit.framework" ]

  configs += [ "//build/config/compiler:enable_arc" ]
}

source_set("unittests") {
  configs += [ "//build/config/compiler:enable_arc" ]
  testonly = true
  deps = [
    ":common",
    "//base",
    "//ios/web/public:referrer",
    "//net",
    "//testing/gtest",
    "//url",
  ]

  sources = [
    "origin_util_unittest.mm",
    "referrer_util_unittest.cc",
    "url_util_unittest.cc",
  ]
}