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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « build/config/mac/rules.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
11 import("//mojo/public/tools/bindings/mojom.gni") 11 import("//mojo/public/tools/bindings/mojom.gni")
12 import("//tools/grit/repack.gni") 12 import("//tools/grit/repack.gni")
13 import("//tools/grit/grit_rule.gni") 13 import("//tools/grit/grit_rule.gni")
14 if (is_android) { 14 if (is_android) {
15 import("//build/config/android/config.gni") 15 import("//build/config/android/config.gni")
16 } else if (is_mac) {
17 import("//build/config/mac/rules.gni")
16 } 18 }
17 19
18 declare_args() { 20 declare_args() {
19 content_shell_product_name = "Content Shell" 21 content_shell_product_name = "Content Shell"
20 content_shell_version = "99.77.34.5" 22 content_shell_version = "99.77.34.5"
21 } 23 }
22 24
23 config("content_shell_lib_warnings") { 25 config("content_shell_lib_warnings") {
24 if (is_clang) { 26 if (is_clang) {
25 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out 27 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 515
514 sources = [ 516 sources = [
515 "app/shell_content_main.cc", 517 "app/shell_content_main.cc",
516 "app/shell_content_main.h", 518 "app/shell_content_main.h",
517 ] 519 ]
518 520
519 deps = [ 521 deps = [
520 ":content_shell_lib", 522 ":content_shell_lib",
521 ] 523 ]
522 } 524 }
525
526 mac_app_bundle("content_shell_helper_app") {
527 testonly = true
528 output_name = "$content_shell_product_name Helper"
529 sources = [
530 "app/shell_main.cc",
531 ]
532 deps = [
533 ":framework",
534 ]
535 info_plist = "app/helper-Info.plist"
536 }
523 } 537 }
524 538
525 mojom("mojo_bindings") { 539 mojom("mojo_bindings") {
526 sources = [ 540 sources = [
527 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", 541 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
528 ] 542 ]
529 } 543 }
OLDNEW
« 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