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

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

Issue 2589843002: Upstream Chrome on iOS source code [11/11]. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « ios/chrome/browser/ui/downloads/BUILD.gn ('k') | ios/chrome/browser/ui/fancy_ui/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("elements") { 5 source_set("elements") {
6 configs += [ "//build/config/compiler:enable_arc" ] 6 configs += [ "//build/config/compiler:enable_arc" ]
7 sources = [ 7 sources = [
8 "selector_coordinator.h", 8 "selector_coordinator.h",
9 "selector_coordinator.mm", 9 "selector_coordinator.mm",
10 "selector_picker_presentation_controller.h", 10 "selector_picker_presentation_controller.h",
11 "selector_picker_presentation_controller.mm", 11 "selector_picker_presentation_controller.mm",
12 "selector_picker_view_controller.h", 12 "selector_picker_view_controller.h",
13 "selector_picker_view_controller.mm", 13 "selector_picker_view_controller.mm",
14 "selector_view_controller_delegate.h", 14 "selector_view_controller_delegate.h",
15 ] 15 ]
16 deps = [ 16 deps = [
17 "//base", 17 "//base",
18 "//ios/chrome/browser", 18 "//ios/chrome/browser",
19 ] 19 ]
20 } 20 }
21 21
22 source_set("unit_tests") { 22 source_set("unit_tests") {
23 testonly = true 23 testonly = true
24 sources = [ 24 sources = [
25 "activity_overlay_coordinator_unittest.mm",
25 "selector_coordinator_unittest.mm", 26 "selector_coordinator_unittest.mm",
26 "selector_picker_view_controller_unittest.mm", 27 "selector_picker_view_controller_unittest.mm",
27 ] 28 ]
28 deps = [ 29 deps = [
29 ":elements", 30 ":elements",
31 ":elements_internal",
30 "//base", 32 "//base",
31 "//base/test:test_support", 33 "//base/test:test_support",
32 "//testing/gtest", 34 "//testing/gtest",
33 "//third_party/ocmock", 35 "//third_party/ocmock",
34 ] 36 ]
35 } 37 }
38
39 source_set("elements_internal") {
40 sources = [
41 "activity_overlay_coordinator.h",
42 "activity_overlay_coordinator.mm",
43 "activity_overlay_view_controller.h",
44 "activity_overlay_view_controller.mm",
45 ]
46 deps = [
47 "//base",
48 "//ios/chrome/browser",
49 "//ios/chrome/browser/ui",
50 "//ios/chrome/browser/ui/material_components",
51 "//ios/third_party/material_components_ios",
52 ]
53 libs = [ "UIKit.framework" ]
54 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/downloads/BUILD.gn ('k') | ios/chrome/browser/ui/fancy_ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698