| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 import("//build/mac/tweak_info_plist.gni") | 7 import("//build/mac/tweak_info_plist.gni") |
| 8 import("//build/util/process_version.gni") | 8 import("//build/util/process_version.gni") |
| 9 import("//remoting/build/config/remoting_build.gni") | 9 import("//remoting/build/config/remoting_build.gni") |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "remoting_settings_view_controller.mm", | 35 "remoting_settings_view_controller.mm", |
| 36 "remoting_view_controller.h", | 36 "remoting_view_controller.h", |
| 37 "remoting_view_controller.mm", | 37 "remoting_view_controller.mm", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 deps = [ | 40 deps = [ |
| 41 "//base", | 41 "//base", |
| 42 "//google_apis", | 42 "//google_apis", |
| 43 "//remoting/base", | 43 "//remoting/base", |
| 44 "//remoting/client", | 44 "//remoting/client", |
| 45 "//remoting/client/input", |
| 45 "//remoting/ios:ios_core", | 46 "//remoting/ios:ios_core", |
| 46 "//remoting/protocol", | 47 "//remoting/protocol", |
| 47 "//ui/base", | 48 "//ui/base", |
| 48 "//ui/gfx", | 49 "//ui/gfx", |
| 49 "//ui/resources", | 50 "//ui/resources", |
| 50 ] | 51 ] |
| 51 | 52 |
| 52 public_deps = [ | 53 public_deps = [ |
| 53 "//ios/third_party/material_components_ios", | 54 "//ios/third_party/material_components_ios", |
| 54 ] | 55 ] |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "//remoting/ios/app/resources:remoting_icons", | 100 "//remoting/ios/app/resources:remoting_icons", |
| 100 "//remoting/ios/display", | 101 "//remoting/ios/display", |
| 101 ] | 102 ] |
| 102 | 103 |
| 103 bundle_deps = [ ":launchscreen_storyboard" ] | 104 bundle_deps = [ ":launchscreen_storyboard" ] |
| 104 } | 105 } |
| 105 | 106 |
| 106 bundle_data_ib_file("launchscreen_storyboard") { | 107 bundle_data_ib_file("launchscreen_storyboard") { |
| 107 source = "resources/LaunchScreen.storyboard" | 108 source = "resources/LaunchScreen.storyboard" |
| 108 } | 109 } |
| OLD | NEW |