Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: ios/shared/chrome/browser/ui/dialogs/BUILD.gn

Issue 2921833002: [iOS Clean] Created OverlayService.
Patch Set: Cancel overlays on queue deallocation Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("dialogs") {
6 deps = [
7 "//base",
8 "//components/strings",
9 "//components/url_formatter",
10 "//ios/web",
11 "//ui/base",
12 ]
13
14 sources = [
15 "nsurl_protection_space_util.h",
16 "nsurl_protection_space_util.mm",
17 ]
18
19 configs += [ "//build/config/compiler:enable_arc" ]
20 }
21
22 source_set("unit_tests") {
23 testonly = true
24
25 sources = [
26 "nsurl_protection_space_util_unittest.mm",
27 ]
28
29 deps = [
30 ":dialogs",
31 "//base",
32 "//components/strings",
33 "//ios/web",
34 "//ios/web/public/test/fakes",
35 "//testing/gtest",
36 "//ui/base",
37 ]
38
39 configs += [ "//build/config/compiler:enable_arc" ]
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698