blob: 58c13149c51b668a826690c452ad2db65c3551ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2020 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("accessibility") {
sources = [
"window_accessibility_change_notifier_app_agent.h",
"window_accessibility_change_notifier_app_agent.mm",
]
deps = [
"//base",
"//base:i18n",
"//ios/chrome/app/application_delegate:app_state_header",
"//ios/chrome/app/strings",
"//ios/chrome/browser/ui/main:scene_state_header",
"//ui/base",
]
configs += [ "//build/config/compiler:enable_arc" ]
}
|