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

Side by Side Diff: build/ios/mac_build.gypi

Issue 564523003: Remove unused variable ios_mac_build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # Xcode throws an error if an iOS target depends on a Mac OS X target. So 5 # Xcode throws an error if an iOS target depends on a Mac OS X target. So
6 # any place a utility program needs to be build and run, an action is 6 # any place a utility program needs to be build and run, an action is
7 # used to run ninja as script to work around this. 7 # used to run ninja as script to work around this.
8 # Example: 8 # Example:
9 # { 9 # {
10 # 'target_name': 'foo', 10 # 'target_name': 'foo',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'build/gyp_chromium', 60 'build/gyp_chromium',
61 '--depth=.', 61 '--depth=.',
62 # Don't use anything set for the iOS side of things. 62 # Don't use anything set for the iOS side of things.
63 '--ignore-environment', 63 '--ignore-environment',
64 # Generate for ninja 64 # Generate for ninja
65 '--format=ninja', 65 '--format=ninja',
66 # Generate files into xcodebuild/ninja 66 # Generate files into xcodebuild/ninja
67 '-Goutput_dir=xcodebuild/<(ninja_output_dir)', 67 '-Goutput_dir=xcodebuild/<(ninja_output_dir)',
68 # nacl isn't in the iOS checkout, make sure it's turned off 68 # nacl isn't in the iOS checkout, make sure it's turned off
69 '-Ddisable_nacl=1', 69 '-Ddisable_nacl=1',
70 # Add a variable to handle specific cases for mac_build.
71 '-Dios_mac_build=1',
justincohen 2014/09/15 13:44:51 Do you know where we ever used this?
sdefresne 2014/09/15 15:16:29 It was never used not even in the CL that introduc
72 # Pass through the Mac SDK version. 70 # Pass through the Mac SDK version.
73 '-Dmac_sdk=<(mac_sdk)', 71 '-Dmac_sdk=<(mac_sdk)',
74 '-Dparent_generator=<(parent_generator)' 72 '-Dparent_generator=<(parent_generator)'
75 ], 73 ],
76 74
77 # Rerun gyp for each of the projects needed. This is what actually 75 # Rerun gyp for each of the projects needed. This is what actually
78 # generates the projects on disk. 76 # generates the projects on disk.
79 're_run_gyp_execution': 77 're_run_gyp_execution':
80 '<!(cd <(DEPTH) && <@(re_run_gyp) <@(re_run_targets))', 78 '<!(cd <(DEPTH) && <@(re_run_gyp) <@(re_run_targets))',
81 }, 79 },
82 # Since these are used to generate things needed by other targets, make 80 # Since these are used to generate things needed by other targets, make
83 # them hard dependencies so they are always built first. 81 # them hard dependencies so they are always built first.
84 'hard_dependency': 1, 82 'hard_dependency': 1,
85 } 83 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698