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

Side by Side Diff: ios/showcase/core/BUILD.gn

Issue 2651833002: [ios showcase]Configures Resource Bundle and adds Toolbar Coordinator (Closed)
Patch Set: Created 3 years, 11 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
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("core") { 5 source_set("core") {
6 sources = [ 6 sources = [
7 "app_delegate.h", 7 "app_delegate.h",
8 "app_delegate.mm", 8 "app_delegate.mm",
9 "showcase_model.h", 9 "showcase_model.h",
10 "showcase_model.mm", 10 "showcase_model.mm",
11 "showcase_view_controller.h", 11 "showcase_view_controller.h",
12 "showcase_view_controller.mm", 12 "showcase_view_controller.mm",
13 ] 13 ]
14 deps = [ 14 deps = [
15 "//base", 15 "//base",
16 "//ios/clean/chrome/app:application_state",
17 "//ios/clean/chrome/app/steps",
16 "//ios/showcase/common", 18 "//ios/showcase/common",
17 "//ios/third_party/material_components_ios", 19 "//ios/third_party/material_components_ios",
18 "//ios/third_party/material_roboto_font_loader_ios", 20 "//ios/third_party/material_roboto_font_loader_ios",
19 ] 21 ]
20 libs = [ "UIKit.framework" ] 22 libs = [ "UIKit.framework" ]
21 configs += [ "//build/config/compiler:enable_arc" ] 23 configs += [ "//build/config/compiler:enable_arc" ]
22 } 24 }
23 25
24 source_set("main") { 26 source_set("main") {
25 sources = [ 27 sources = [
26 "main.mm", 28 "main.mm",
27 ] 29 ]
28 deps = [ 30 deps = [
29 ":core", 31 ":core",
32 "//base",
33 "//ios/chrome/app/startup",
30 34
31 # Needed to disable the tests hooks. 35 # Needed to disable the tests hooks.
32 "//ios/chrome/app:tests_fake_hook", 36 "//ios/chrome/app:tests_fake_hook",
33 37
34 # Needed for including ios/chrome/browser/ui. 38 # Needed for including ios/chrome/browser/ui.
35 "//ios/chrome/browser/tabs:tabs_internal", 39 "//ios/chrome/browser/tabs:tabs_internal",
36 "//ios/chrome/browser/ui:ui_internal", 40 "//ios/chrome/browser/ui:ui_internal",
37 ] 41 ]
38 libs = [ "UIKit.framework" ] 42 libs = [ "UIKit.framework" ]
39 configs += [ "//build/config/compiler:enable_arc" ] 43 configs += [ "//build/config/compiler:enable_arc" ]
40 } 44 }
41 45
42 source_set("eg_tests") { 46 source_set("eg_tests") {
43 testonly = true 47 testonly = true
44 sources = [ 48 sources = [
45 "showcase_egtest.mm", 49 "showcase_egtest.mm",
46 ] 50 ]
47 deps = [ 51 deps = [
48 "//ios/showcase/test", 52 "//ios/showcase/test",
49 "//ios/third_party/earl_grey", 53 "//ios/third_party/earl_grey",
50 ] 54 ]
51 configs += [ "//build/config/compiler:enable_arc" ] 55 configs += [ "//build/config/compiler:enable_arc" ]
52 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698