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

Unified Diff: chrome/app_shim/app_shim.gypi

Issue 2321703002: Remove all gyp[i] files in //chrome (Closed)
Patch Set: merge Created 4 years, 3 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
Index: chrome/app_shim/app_shim.gypi
diff --git a/chrome/app_shim/app_shim.gypi b/chrome/app_shim/app_shim.gypi
deleted file mode 100644
index f7deb4766997a145d809bd47974d9054335b3146..0000000000000000000000000000000000000000
--- a/chrome/app_shim/app_shim.gypi
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'targets': [
- {
- # This is the part of the shim process compiled into Chrome. It runs only
- # in the shim process, after the shim finds and loads the Chrome
- # Framework bundle.
- #
- # GN version: //chrome/app_shim
- 'target_name': 'app_shim',
- 'type': 'static_library',
- 'dependencies': [
- # Since app_shim and browser depend on each other, we omit the
- # dependency on browser here.
- '../chrome/chrome_resources.gyp:chrome_strings',
- 'app_mode_app_support',
- ],
- 'sources': [
- 'chrome_main_app_mode_mac.mm',
- ],
- 'include_dirs': [
- '<(INTERMEDIATE_DIR)',
- '../..',
- ],
- }, # target app_shim
- {
- # This produces the template for app mode loader bundles. It's a template
- # in the sense that parts of it need to be "filled in" by Chrome before it
- # can be executed.
- 'target_name': 'app_mode_app',
- 'type': 'executable',
- 'mac_bundle' : 1,
- 'variables': {
- 'enable_wexit_time_destructors': 1,
- 'mac_real_dsym': 1,
- },
- 'product_name': 'app_mode_loader',
- 'dependencies': [
- 'app_mode_app_support',
- 'infoplist_strings_tool',
- ],
- 'sources': [
- 'app_mode_loader_mac.mm',
- 'app_mode-Info.plist',
- ],
- 'include_dirs': [
- '../..',
- ],
- 'link_settings': {
- 'libraries': [
- '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
- '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
- ],
- },
- 'mac_bundle_resources!': [
- 'app_shim/app_mode-Info.plist',
- ],
- 'mac_bundle_resources/': [
- ['exclude', '.*'],
- ],
- 'xcode_settings': {
- 'INFOPLIST_FILE': 'app_shim/app_mode-Info.plist',
- 'APP_MODE_APP_BUNDLE_ID': '<(mac_bundle_id).app.@APP_MODE_SHORTCUT_ID@',
- },
- 'postbuilds' : [
- {
- # Modify the Info.plist as needed. The script explains why this
- # is needed. This is also done in the chrome and chrome_dll
- # targets. In this case, --breakpad=0, --keystone=0, and --scm=0
- # are used because Breakpad, Keystone, and SCM keys are
- # never placed into the app mode loader.
- 'postbuild_name': 'Tweak Info.plist',
- 'action': ['<(tweak_info_plist_path)',
- '--plist=${TARGET_BUILD_DIR}/${INFOPLIST_PATH}',
- '--breakpad=0',
- '--keystone=0',
- '--scm=0'],
- },
- ],
- }, # target app_mode_app
- ], # targets
-}
« no previous file with comments | « chrome/app/version_assembly/version_assembly_manifest_action.gypi ('k') | chrome/browser/apps/app_shim/browser_app_shim.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698