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

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

Issue 2929563002: [iOS Clean] Added dialogs UI support.
Patch Set: Added DialogMediator 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_mediator+internal.h",
8 "dialog_mediator.h",
9 "dialog_mediator.mm",
10 ]
11
12 configs += [ "//build/config/compiler:enable_arc" ]
13
14 deps = [
15 ":dialogs_ui",
16 "//base",
17 "//ios/clean/chrome/browser/ui/commands",
18 "//ios/shared/chrome/browser/ui/commands",
19 ]
20 }
21
22 source_set("dialogs_ui") {
23 sources = [
24 "dialog_button_item.h",
25 "dialog_button_item.mm",
26 "dialog_consumer.h",
27 "dialog_text_field_item.h",
28 "dialog_text_field_item.mm",
29 "dialog_view_controller.h",
30 "dialog_view_controller.mm",
31 ]
32
33 configs += [ "//build/config/compiler:enable_arc" ]
34
35 deps = [
36 "//base",
37 "//components/strings",
38 "//ios/chrome/app/strings",
39 "//ios/clean/chrome/browser/ui/commands",
40 "//ui/base",
41 ]
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698