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

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

Issue 2712743005: Add NTPViewController to Showcase. (Closed)
Patch Set: Fix compile Created 3 years, 10 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 import("//build/config/ios/rules.gni") 5 import("//build/config/ios/rules.gni")
6 import("//ios/build/chrome_build.gni") 6 import("//ios/build/chrome_build.gni")
7 import("//ios/build/config.gni") 7 import("//ios/build/config.gni")
8 import("//ios/third_party/earl_grey/ios_eg_test.gni") 8 import("//ios/third_party/earl_grey/ios_eg_test.gni")
9 9
10 ios_app_bundle("showcase") { 10 ios_app_bundle("showcase") {
11 info_plist = "core/Info.plist" 11 info_plist = "core/Info.plist"
12 extra_substitutions = [ "IOS_BUNDLE_ID_PREFIX=$ios_app_bundle_id_prefix" ] 12 extra_substitutions = [ "IOS_BUNDLE_ID_PREFIX=$ios_app_bundle_id_prefix" ]
13 output_name = "Showcase" 13 output_name = "Showcase"
14 deps = [ 14 deps = [
15 ":features", 15 ":features",
16 "//ios/showcase/core:main", 16 "//ios/showcase/core:main",
17 17
18 # All shared libraries must have the sanitizer deps to properly link in 18 # All shared libraries must have the sanitizer deps to properly link in
19 # asan mode (this target will be empty in other cases). 19 # asan mode (this target will be empty in other cases).
20 "//build/config/sanitizers:deps", 20 "//build/config/sanitizers:deps",
21 ] 21 ]
22 bundle_deps = [ ":launchscreen_storyboard" ] 22 bundle_deps = [ ":launchscreen_storyboard" ]
23 assert_no_deps = ios_assert_no_deps 23 assert_no_deps = ios_assert_no_deps
24 } 24 }
25 25
26 group("features") { 26 group("features") {
27 deps = [ 27 deps = [
28 "//ios/clean/chrome/browser/ui/tools:tools_ui", 28 "//ios/clean/chrome/browser/ui/tools:tools_ui",
29 "//ios/showcase/ntp",
29 "//ios/showcase/settings", 30 "//ios/showcase/settings",
30 "//ios/showcase/suggestions", 31 "//ios/showcase/suggestions",
31 "//ios/showcase/tab_grid", 32 "//ios/showcase/tab_grid",
32 "//ios/showcase/tab_strip", 33 "//ios/showcase/tab_strip",
33 "//ios/showcase/toolbar", 34 "//ios/showcase/toolbar",
34 "//ios/showcase/uikit_table_view_cell", 35 "//ios/showcase/uikit_table_view_cell",
35 ] 36 ]
36 } 37 }
37 38
38 group("all_tests") { 39 group("all_tests") {
(...skipping 18 matching lines...) Expand all
57 # asan mode (this target will be empty in other cases). 58 # asan mode (this target will be empty in other cases).
58 "//build/config/sanitizers:deps", 59 "//build/config/sanitizers:deps",
59 ] 60 ]
60 bundle_deps = [ ":launchscreen_storyboard" ] 61 bundle_deps = [ ":launchscreen_storyboard" ]
61 assert_no_deps = ios_assert_no_deps 62 assert_no_deps = ios_assert_no_deps
62 } 63 }
63 64
64 bundle_data_ib_file("launchscreen_storyboard") { 65 bundle_data_ib_file("launchscreen_storyboard") {
65 source = "core/LaunchScreen.storyboard" 66 source = "core/LaunchScreen.storyboard"
66 } 67 }
OLDNEW
« no previous file with comments | « no previous file | ios/showcase/core/showcase_model.mm » ('j') | ios/showcase/ntp/sc_ntp_coordinator.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698