| 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 17 matching lines...) Expand all Loading... |
| 28 "host_collection_view_cell.mm", | 28 "host_collection_view_cell.mm", |
| 29 "host_collection_view_controller.h", | 29 "host_collection_view_controller.h", |
| 30 "host_collection_view_controller.mm", | 30 "host_collection_view_controller.mm", |
| 31 "host_view_controller.h", | 31 "host_view_controller.h", |
| 32 "host_view_controller.mm", | 32 "host_view_controller.mm", |
| 33 "main.mm", | 33 "main.mm", |
| 34 "pin_entry_view.h", | 34 "pin_entry_view.h", |
| 35 "pin_entry_view.mm", | 35 "pin_entry_view.mm", |
| 36 "remoting_settings_view_controller.h", | 36 "remoting_settings_view_controller.h", |
| 37 "remoting_settings_view_controller.mm", | 37 "remoting_settings_view_controller.mm", |
| 38 "remoting_theme.h", |
| 39 "remoting_theme.mm", |
| 38 "remoting_view_controller.h", | 40 "remoting_view_controller.h", |
| 39 "remoting_view_controller.mm", | 41 "remoting_view_controller.mm", |
| 40 ] | 42 ] |
| 41 | 43 |
| 42 deps = [ | 44 deps = [ |
| 43 "//base", | 45 "//base", |
| 44 "//google_apis", | 46 "//google_apis", |
| 45 "//remoting/base", | 47 "//remoting/base", |
| 46 "//remoting/client", | 48 "//remoting/client", |
| 47 "//remoting/client/input", | 49 "//remoting/client/input", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "//remoting/ios/app/resources:remoting_icons", | 104 "//remoting/ios/app/resources:remoting_icons", |
| 103 "//remoting/ios/display", | 105 "//remoting/ios/display", |
| 104 ] | 106 ] |
| 105 | 107 |
| 106 bundle_deps = [ ":launchscreen_storyboard" ] | 108 bundle_deps = [ ":launchscreen_storyboard" ] |
| 107 } | 109 } |
| 108 | 110 |
| 109 bundle_data_ib_file("launchscreen_storyboard") { | 111 bundle_data_ib_file("launchscreen_storyboard") { |
| 110 source = "resources/LaunchScreen.storyboard" | 112 source = "resources/LaunchScreen.storyboard" |
| 111 } | 113 } |
| OLD | NEW |