| 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", |
| 18 ] | 22 ] |
| 19 | 23 |
| 20 ldflags = [ | 24 ldflags = [ |
| 21 "-Xlinker", | 25 "-Xlinker", |
| 22 "-objc_abi_version", | 26 "-objc_abi_version", |
| 23 "-Xlinker", | 27 "-Xlinker", |
| 24 "2", | 28 "2", |
| 25 ] | 29 ] |
| 26 } | 30 } |
| 27 | 31 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "shell_web_main_parts.h", | 64 "shell_web_main_parts.h", |
| 61 "shell_web_main_parts.mm", | 65 "shell_web_main_parts.mm", |
| 62 "view_controller.h", | 66 "view_controller.h", |
| 63 "view_controller.mm", | 67 "view_controller.mm", |
| 64 ] | 68 ] |
| 65 | 69 |
| 66 deps = [ | 70 deps = [ |
| 67 ":main_view_bundle_data", | 71 ":main_view_bundle_data", |
| 68 ":shell_bundle_data", | 72 ":shell_bundle_data", |
| 69 "//base", | 73 "//base", |
| 74 "//ios/net", |
| 70 "//ios/web", | 75 "//ios/web", |
| 76 "//ios/web:user_agent", |
| 71 "//ios/web/public/app", | 77 "//ios/web/public/app", |
| 72 "//net", | 78 "//net", |
| 73 "//net:extras", | 79 "//net:extras", |
| 74 "//ui/base", | 80 "//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", | |
| 79 ] | 81 ] |
| 80 | 82 |
| 81 libs = [ | 83 libs = [ |
| 82 "CoreGraphics.framework", | 84 "CoreGraphics.framework", |
| 83 "CoreFoundation.framework", | 85 "CoreFoundation.framework", |
| 84 "Foundation.framework", | 86 "Foundation.framework", |
| 85 "UIKit.framework", | 87 "UIKit.framework", |
| 86 ] | 88 ] |
| 87 } | 89 } |
| OLD | NEW |