Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 # IMPORTANT: | 5 # IMPORTANT: |
| 6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
| 7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
| 8 { | 8 { |
| 9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 4626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4637 'make_global_settings': [ | 4637 'make_global_settings': [ |
| 4638 ['CC', '<(sysroot)/../bin/mipsel-linux-gnu-gcc'], | 4638 ['CC', '<(sysroot)/../bin/mipsel-linux-gnu-gcc'], |
| 4639 ['CXX', '<(sysroot)/../bin/mipsel-linux-gnu-g++'], | 4639 ['CXX', '<(sysroot)/../bin/mipsel-linux-gnu-g++'], |
| 4640 ['LINK', '$(CXX)'], | 4640 ['LINK', '$(CXX)'], |
| 4641 ['CC.host', '<!(which gcc)'], | 4641 ['CC.host', '<!(which gcc)'], |
| 4642 ['CXX.host', '<!(which g++)'], | 4642 ['CXX.host', '<!(which g++)'], |
| 4643 ['LINK.host', '<!(which g++)'], | 4643 ['LINK.host', '<!(which g++)'], |
| 4644 ], | 4644 ], |
| 4645 }], | 4645 }], |
| 4646 ], | 4646 ], |
| 4647 'configurations': { | |
| 4648 'Debug': { | |
| 4649 'xcode_settings': { | |
| 4650 # Enable 'Build Active Architecture Only' for Debug. This | |
| 4651 # avoids a project-level warning in Xcode. | |
|
Mark Mentovai
2013/09/03 13:52:22
So this needs to be a project-level setting.
Righ
lliabraa
2013/09/03 14:07:36
Done.
| |
| 4652 'ONLY_ACTIVE_ARCH': 'YES', | |
| 4653 }, | |
| 4654 }, | |
| 4655 }, | |
| 4647 'xcode_settings': { | 4656 'xcode_settings': { |
| 4648 # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT! | 4657 # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT! |
| 4649 # This block adds *project-wide* configuration settings to each project | 4658 # This block adds *project-wide* configuration settings to each project |
| 4650 # file. It's almost always wrong to put things here. Specify your | 4659 # file. It's almost always wrong to put things here. Specify your |
| 4651 # custom xcode_settings in target_defaults to add them to targets instead. | 4660 # custom xcode_settings in target_defaults to add them to targets instead. |
| 4652 | 4661 |
| 4653 'conditions': [ | 4662 'conditions': [ |
| 4654 # In an Xcode Project Info window, the "Base SDK for All Configurations" | 4663 # In an Xcode Project Info window, the "Base SDK for All Configurations" |
| 4655 # setting sets the SDK on a project-wide basis. In order to get the | 4664 # setting sets the SDK on a project-wide basis. In order to get the |
| 4656 # configured SDK to show properly in the Xcode UI, SDKROOT must be set | 4665 # configured SDK to show properly in the Xcode UI, SDKROOT must be set |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4700 # settings in target dicts. SYMROOT is a special case, because many other | 4709 # settings in target dicts. SYMROOT is a special case, because many other |
| 4701 # Xcode variables depend on it, including variables such as | 4710 # Xcode variables depend on it, including variables such as |
| 4702 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4711 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4703 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4712 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4704 # files to appear (when present) in the UI as actual files and not red | 4713 # files to appear (when present) in the UI as actual files and not red |
| 4705 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4714 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4706 # and therefore SYMROOT, needs to be set at the project level. | 4715 # and therefore SYMROOT, needs to be set at the project level. |
| 4707 'SYMROOT': '<(DEPTH)/xcodebuild', | 4716 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4708 }, | 4717 }, |
| 4709 } | 4718 } |
| OLD | NEW |