summaryrefslogtreecommitdiff
path: root/chromium/ios/chrome/browser/ui/keyboard/BUILD.gn
blob: fe7b376a8920bb3aadeefd44e656e38a7f2caf1c (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
# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("keyboard") {
  configs += [ "//build/config/compiler:enable_arc" ]
  sources = [
    "UIKeyCommand+Chrome.h",
    "UIKeyCommand+Chrome.mm",
  ]
  deps = [
    "//base",
    "//ios/chrome/browser/ui/commands",
  ]
}

source_set("features") {
  configs += [ "//build/config/compiler:enable_arc" ]
  sources = [
    "features.h",
    "features.mm",
  ]
  deps = [ "//base" ]
}

source_set("unit_tests") {
  configs += [ "//build/config/compiler:enable_arc" ]
  testonly = true
  sources = [ "UIKeyCommand+ChromeTest.mm" ]
  deps = [
    ":keyboard",
    "//base",
    "//ios/chrome/browser/ui/commands",
    "//testing/gtest",
  ]
}

source_set("eg2_tests") {
  configs += [
    "//build/config/compiler:enable_arc",
    "//build/config/ios:xctest_config",
  ]
  testonly = true
  sources = [ "keyboard_commands_egtest.mm" ]
  deps = [
    "//components/strings",
    "//ios/chrome/app/strings",
    "//ios/chrome/browser/ui/bookmarks:constants",
    "//ios/chrome/browser/ui/popup_menu:constants",
    "//ios/chrome/browser/ui/table_view:constants",
    "//ios/chrome/test/earl_grey:eg_test_support+eg2",
    "//ios/testing/earl_grey:eg_test_support+eg2",
    "//ios/third_party/earl_grey2:test_lib",
    "//net:test_support",
  ]
  frameworks = [
    "UIKit.framework",
    "XCTest.framework",
  ]
}