summaryrefslogtreecommitdiff
path: root/chromium/ios/chrome/common/BUILD.gn
blob: d0b2a470e2cf8eedc16182c7a0d924d3cad967f4 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# 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/buildflag_header.gni")
import("//build/config/ios/ios_sdk.gni")

source_set("common") {
  configs += [ "//build/config/compiler:enable_arc" ]
  sources = [
    "channel_info.h",
    "channel_info.mm",
    "material_timing.h",
    "material_timing.mm",
    "string_util.h",
    "string_util.mm",
    "x_callback_url.cc",
    "x_callback_url.h",
  ]

  deps = [
    "//base",
    "//components/version_info",
    "//ios/chrome/common/app_group:main_app",
    "//ios/chrome/common/physical_web",
    "//net",
    "//url",
  ]

  libs = [ "QuartzCore.framework" ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "block_unittest.mm",
    "ns_regular_expression_unittest.mm",
    "string_util_unittest.mm",
    "x_callback_url_unittest.cc",
  ]
  deps = [
    ":common",
    ":noarc_unit_tests",
    "//base",
    "//testing/gtest",
  ]
  configs += [ "//build/config/compiler:enable_arc" ]
}

# The block_unittest.mm has been duplicated during the migration of iOS code
# to ARC (see crbug.com/624363). As this test checks the interaction of C++
# objects and Objective-C blocks, it is necessary to keep two version of the
# test compiled with and without ARC. Remove this file when the conversion to
# ARC is complete.
source_set("noarc_unit_tests") {
  visibility = [ ":unit_tests" ]
  testonly = true
  sources = [
    "noarc_block_unittest.mm",
  ]
  deps = [
    ":common",
    "//base",
    "//testing/gtest",
  ]
}

buildflag_header("ios_app_bundle_id_prefix_header") {
  header = "ios_app_bundle_id_prefix.h"
  flags = [ "IOS_APP_BUNDLE_ID_PREFIX=\"$ios_app_bundle_id_prefix\"" ]
}