| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/mac/rules.gni") | 5 import("//build/config/mac/rules.gni") |
| 6 import("//build/util/branding.gni") | 6 import("//build/util/branding.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("mac_installer_base") { | 9 source_set("mac_installer_base") { |
| 10 visibility = [ ":*" ] | 10 visibility = [ ":*" ] |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "Unpacker.h", | 26 "Unpacker.h", |
| 27 "Unpacker.m", | 27 "Unpacker.m", |
| 28 ] | 28 ] |
| 29 public_configs = [ "//build/config/compiler:enable_arc" ] | 29 public_configs = [ "//build/config/compiler:enable_arc" ] |
| 30 } | 30 } |
| 31 | 31 |
| 32 mac_app_bundle("mac_installer_app") { | 32 mac_app_bundle("mac_installer_app") { |
| 33 output_name = "$chrome_product_installer_full_name" | 33 output_name = "$chrome_product_installer_full_name" |
| 34 info_plist = "Info.plist" | 34 info_plist = "Info.plist" |
| 35 extra_substitutions = [ | 35 extra_substitutions = [ |
| 36 "MACOSX_DEPLOYMENT_TARGET=10.9", | |
| 37 "PRODUCT_INSTALLER_FULLNAME=$chrome_product_installer_full_name", | 36 "PRODUCT_INSTALLER_FULLNAME=$chrome_product_installer_full_name", |
| 38 "CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id", | 37 "CHROMIUM_BUNDLE_ID=$chrome_mac_bundle_id", |
| 39 ] | 38 ] |
| 40 sources = [ | 39 sources = [ |
| 41 "AppDelegate.h", | 40 "AppDelegate.h", |
| 42 "AppDelegate.mm", | 41 "AppDelegate.mm", |
| 43 "AuthorizedInstall.h", | 42 "AuthorizedInstall.h", |
| 44 "AuthorizedInstall.m", | 43 "AuthorizedInstall.m", |
| 45 "InstallerWindowController.h", | 44 "InstallerWindowController.h", |
| 46 "InstallerWindowController.m", | 45 "InstallerWindowController.m", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "DiskArbitration.framework", | 93 "DiskArbitration.framework", |
| 95 "Security.framework", | 94 "Security.framework", |
| 96 ] | 95 ] |
| 97 data = [ | 96 data = [ |
| 98 "//chrome/test/data/mac_installer/requestCheck.dtd", | 97 "//chrome/test/data/mac_installer/requestCheck.dtd", |
| 99 "//chrome/test/data/mac_installer/requestSample.xml", | 98 "//chrome/test/data/mac_installer/requestSample.xml", |
| 100 "//chrome/test/data/mac_installer/responseExample.xml", | 99 "//chrome/test/data/mac_installer/responseExample.xml", |
| 101 "//chrome/test/data/mac_installer/test-dmg.dmg", | 100 "//chrome/test/data/mac_installer/test-dmg.dmg", |
| 102 ] | 101 ] |
| 103 } | 102 } |
| OLD | NEW |