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

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

Issue 2929563002: [iOS Clean] Added dialogs UI support.
Patch Set: rebase & Mark's comments 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_internal") {
6 sources = [
7 "dialog_coordinator+subclassing.h",
8 "dialog_coordinator.h",
9 "dialog_coordinator.mm",
10 "dialog_mediator+subclassing.h",
11 "dialog_mediator.h",
12 "dialog_mediator.mm",
13 ]
14
15 configs += [ "//build/config/compiler:enable_arc" ]
16
17 deps = [
18 ":dialogs_ui",
19 "//base",
20 "//ios/clean/chrome/browser/ui/commands",
21 "//ios/clean/chrome/browser/ui/overlay_service",
22 "//ios/shared/chrome/browser/ui/browser_list",
23 "//ios/shared/chrome/browser/ui/commands",
24 "//ios/shared/chrome/browser/ui/coordinators",
25 ]
26 }
27
28 source_set("dialogs_ui") {
29 sources = [
30 "dialog_button_configuration.h",
31 "dialog_button_configuration.mm",
32 "dialog_consumer.h",
33 "dialog_text_field_configuration.h",
34 "dialog_text_field_configuration.mm",
35 "dialog_view_controller.h",
36 "dialog_view_controller.mm",
37 ]
38
39 configs += [ "//build/config/compiler:enable_arc" ]
40
41 deps = [
42 "//base",
43 "//components/strings",
44 "//ios/chrome/app/strings",
45 "//ios/clean/chrome/browser/ui/commands",
46 "//ui/base",
47 ]
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698