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

Unified Diff: content/shell/BUILD.gn

Issue 1888833002: [Mac/GN] Initial mac_app_bundle template. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comment Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/mac/rules.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/BUILD.gn
diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn
index e12ee811abc3f7d38ffc1effb0590656169db492..5437060f55d5c25cac00084de818c857c5c5b309 100644
--- a/content/shell/BUILD.gn
+++ b/content/shell/BUILD.gn
@@ -13,6 +13,8 @@ import("//tools/grit/repack.gni")
import("//tools/grit/grit_rule.gni")
if (is_android) {
import("//build/config/android/config.gni")
+} else if (is_mac) {
+ import("//build/config/mac/rules.gni")
}
declare_args() {
@@ -520,6 +522,18 @@ if (is_mac) {
":content_shell_lib",
]
}
+
+ mac_app_bundle("content_shell_helper_app") {
+ testonly = true
+ output_name = "$content_shell_product_name Helper"
+ sources = [
+ "app/shell_main.cc",
+ ]
+ deps = [
+ ":framework",
+ ]
+ info_plist = "app/helper-Info.plist"
+ }
}
mojom("mojo_bindings") {
« no previous file with comments | « build/config/mac/rules.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698