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

Unified Diff: testing/iossim/iossim.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 | « testing/gtest_nacl.gyp ('k') | testing/perf/perf_test.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/iossim/iossim.gyp
diff --git a/testing/iossim/iossim.gyp b/testing/iossim/iossim.gyp
deleted file mode 100644
index 2b30b18106ebf96f3ee004599e642a4c44a12887..0000000000000000000000000000000000000000
--- a/testing/iossim/iossim.gyp
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright (c) 2012 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': {
- 'mac_deployment_target': '10.9',
- 'mac_sdk_min': '10.9',
- 'class_dump_bin': '<(PRODUCT_DIR)/class-dump',
- 'class_dump_py': '<(DEPTH)/third_party/class-dump/class-dump.py',
- },
- 'targets': [
- {
- # GN version //testing/iossim(//build/toolchain/mac:clang_x64)
- 'target_name': 'iossim',
- 'toolsets': ['host'],
- 'type': 'executable',
- 'variables': {
- 'developer_dir': '<!(xcode-select -print-path)',
- 'iphone_sim_path': '<(developer_dir)/../SharedFrameworks',
- },
- 'dependencies': [
- '<(DEPTH)/third_party/class-dump/class-dump.gyp:class-dump#host',
- ],
- 'include_dirs': [
- '<(INTERMEDIATE_DIR)/iossim',
- ],
- 'sources': [
- 'iossim.mm',
- '<(INTERMEDIATE_DIR)/iossim/iPhoneSimulatorRemoteClient.h',
- ],
- 'libraries': [
- '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
- ],
- 'actions': [
- {
- 'action_name': 'generate_dvt_core_simulator',
- 'inputs': [
- '<(class_dump_bin)',
- '<(class_dump_py)',
- '<(developer_dir)/Library/PrivateFrameworks/CoreSimulator.framework/Versions/Current/CoreSimulator',
- ],
- 'outputs': [
- '<(INTERMEDIATE_DIR)/iossim/CoreSimulator.h'
- ],
- 'action': [
- 'python',
- '<(class_dump_py)',
- '-t', '<(class_dump_bin)',
- '-o', '<(INTERMEDIATE_DIR)/iossim/CoreSimulator.h',
- '--',
- '-CSim',
- '<(developer_dir)/Library/PrivateFrameworks/CoreSimulator.framework',
- ],
- 'message': 'Generating CoreSimulator.h',
- },
- {
- 'action_name': 'generate_dvt_foundation_header',
- 'inputs': [
- '<(class_dump_bin)',
- '<(class_dump_py)',
- '<(iphone_sim_path)/DVTFoundation.framework/Versions/Current/DVTFoundation',
- ],
- 'outputs': [
- '<(INTERMEDIATE_DIR)/iossim/DVTFoundation.h'
- ],
- 'action': [
- 'python',
- '<(class_dump_py)',
- '-t', '<(class_dump_bin)',
- '-o', '<(INTERMEDIATE_DIR)/iossim/DVTFoundation.h',
- '--',
- '-CDVTStackBacktrace|DVTInvalidation|DVTMixIn',
- '<(iphone_sim_path)/DVTFoundation.framework',
- ],
- 'message': 'Generating DVTFoundation.h',
- },
- {
- 'action_name': 'generate_dvt_iphone_sim_header',
- 'inputs': [
- '<(class_dump_bin)',
- '<(class_dump_py)',
- '<(iphone_sim_path)/DVTiPhoneSimulatorRemoteClient.framework/Versions/Current/DVTiPhoneSimulatorRemoteClient',
- ],
- 'outputs': [
- '<(INTERMEDIATE_DIR)/iossim/DVTiPhoneSimulatorRemoteClient.h'
- ],
- 'action': [
- 'python',
- '<(class_dump_py)',
- '-t', '<(class_dump_bin)',
- '-o', '<(INTERMEDIATE_DIR)/iossim/DVTiPhoneSimulatorRemoteClient.h',
- '--',
- '-I',
- '-CiPhoneSimulator',
- '<(iphone_sim_path)/DVTiPhoneSimulatorRemoteClient.framework',
- ],
- 'message': 'Generating DVTiPhoneSimulatorRemoteClient.h',
- },
- ], # actions
- 'xcode_settings': {
- 'ARCHS': ['x86_64'],
- },
- },
- ],
-}
« no previous file with comments | « testing/gtest_nacl.gyp ('k') | testing/perf/perf_test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698