| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 | 6 |
| 7 ios_app_bundle("ios_web_shell") { | 7 ios_app_bundle("ios_web_shell") { |
| 8 info_plist = "Info.plist" | 8 info_plist = "Info.plist" |
| 9 entitlements_path = "" | 9 entitlements_path = "" |
| 10 code_signing_identity = "" | 10 code_signing_identity = "" |
| 11 | 11 |
| 12 sources = [ | 12 sources = [ |
| 13 "web_exe_main.mm", | 13 "web_exe_main.mm", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 deps = [ | 16 deps = [ |
| 17 ":shell", | 17 ":shell", |
| 18 | |
| 19 # All shared libraries must have the sanitizer deps to properly link in | |
| 20 # asan mode (this target will be empty in other cases). | |
| 21 "//build/config/sanitizers:deps", | |
| 22 ] | 18 ] |
| 23 | 19 |
| 24 ldflags = [ | 20 ldflags = [ |
| 25 "-Xlinker", | 21 "-Xlinker", |
| 26 "-objc_abi_version", | 22 "-objc_abi_version", |
| 27 "-Xlinker", | 23 "-Xlinker", |
| 28 "2", | 24 "2", |
| 29 ] | 25 ] |
| 30 } | 26 } |
| 31 | 27 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "shell_web_main_parts.h", | 60 "shell_web_main_parts.h", |
| 65 "shell_web_main_parts.mm", | 61 "shell_web_main_parts.mm", |
| 66 "view_controller.h", | 62 "view_controller.h", |
| 67 "view_controller.mm", | 63 "view_controller.mm", |
| 68 ] | 64 ] |
| 69 | 65 |
| 70 deps = [ | 66 deps = [ |
| 71 ":main_view_bundle_data", | 67 ":main_view_bundle_data", |
| 72 ":shell_bundle_data", | 68 ":shell_bundle_data", |
| 73 "//base", | 69 "//base", |
| 74 "//ios/net", | |
| 75 "//ios/web", | 70 "//ios/web", |
| 76 "//ios/web:user_agent", | |
| 77 "//ios/web/public/app", | 71 "//ios/web/public/app", |
| 78 "//net", | 72 "//net", |
| 79 "//net:extras", | 73 "//net:extras", |
| 80 "//ui/base", | 74 "//ui/base", |
| 75 |
| 76 # All shared libraries must have the sanitizer deps to properly link in |
| 77 # asan mode (this target will be empty in other cases). |
| 78 "//build/config/sanitizers:deps", |
| 81 ] | 79 ] |
| 82 | 80 |
| 83 libs = [ | 81 libs = [ |
| 84 "CoreGraphics.framework", | 82 "CoreGraphics.framework", |
| 85 "CoreFoundation.framework", | 83 "CoreFoundation.framework", |
| 86 "Foundation.framework", | 84 "Foundation.framework", |
| 87 "UIKit.framework", | 85 "UIKit.framework", |
| 88 ] | 86 ] |
| 89 } | 87 } |
| OLD | NEW |