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

Unified Diff: ios/crnet/crnet_pack.gyp

Issue 2332843004: Remove GYP files. (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
« no previous file with comments | « ios/crnet/crnet_consumer/crnet_consumer.gyp ('k') | ios/crnet/test/crnet_test.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/crnet/crnet_pack.gyp
diff --git a/ios/crnet/crnet_pack.gyp b/ios/crnet/crnet_pack.gyp
deleted file mode 100644
index 79d654599e9c7b33864cdd3aff4dc0de3a970781..0000000000000000000000000000000000000000
--- a/ios/crnet/crnet_pack.gyp
+++ /dev/null
@@ -1,68 +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.
-
-{
- 'variables': {
- 'chromium_code': 1,
- },
- 'targets': [],
- 'conditions': [
- # Our shared library hack only works with ninja; xcode cannot generate
- # iOS build targets for dynamic libraries. More details below.
- ['"<(GENERATOR)"=="ninja"', {
- 'targets': [
- {
- 'target_name': 'crnet_dummy',
- 'type': 'executable',
- 'mac_bundle': 1,
- 'dependencies': [
- '../../ios/crnet/crnet.gyp:crnet',
- ],
- 'sources': [
- '../../ios/build/packaging/dummy_main.mm',
- ],
- 'include_dirs': [
- '../..',
- ],
- 'xcode_settings': {
- 'INFOPLIST_FILE': '../../ios/build/packaging/dummy-Info.plist',
- },
- },
- {
- # Build this target to package a standalone CrNet in a single
- # .a file.
- 'target_name': 'crnet_pack',
- 'type': 'none',
- 'dependencies': [
- # Depend on the dummy target so that all of CrNet's dependencies
- # are built before packaging.
- 'crnet_dummy',
- ],
- 'actions': [
- {
- 'action_name': 'Package CrNet',
- 'variables': {
- 'tool_path':
- '../../ios/build/packaging/link_dependencies.py',
- },
-
- # Actions need an inputs list, even if it's empty.
- 'inputs': [
- '<(tool_path)',
- '<(PRODUCT_DIR)/crnet_dummy.app/crnet_dummy',
- ],
- # Only specify one output, since this will be libtool's output.
- 'outputs': [ '<(PRODUCT_DIR)/libcrnet_standalone.a' ],
- 'action': ['<(tool_path)',
- '<(PRODUCT_DIR)',
- 'crnet_dummy.app/crnet_dummy',
- '<@(_outputs)',
- ],
- },
- ],
- },
- ],
- }],
- ],
-}
« no previous file with comments | « ios/crnet/crnet_consumer/crnet_consumer.gyp ('k') | ios/crnet/test/crnet_test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698