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 # 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 |
| 4650 # file. It's almost always wrong to put things here. Specify your |
| 4651 # custom |configurations| in target_defaults to add them to targets instead. |
| 4652 'Debug': { |
| 4653 'xcode_settings': { |
| 4654 # Enable 'Build Active Architecture Only' for Debug. This |
| 4655 # avoids a project-level warning in Xcode. |
| 4656 'ONLY_ACTIVE_ARCH': 'YES', |
| 4657 }, |
| 4658 }, |
| 4659 }, |
4647 'xcode_settings': { | 4660 'xcode_settings': { |
4648 # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT! | 4661 # 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 | 4662 # This block adds *project-wide* configuration settings to each project |
4650 # file. It's almost always wrong to put things here. Specify your | 4663 # 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. | 4664 # custom xcode_settings in target_defaults to add them to targets instead. |
4652 | 4665 |
4653 'conditions': [ | 4666 'conditions': [ |
4654 # In an Xcode Project Info window, the "Base SDK for All Configurations" | 4667 # 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 | 4668 # 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 | 4669 # 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 | 4713 # settings in target dicts. SYMROOT is a special case, because many other |
4701 # Xcode variables depend on it, including variables such as | 4714 # Xcode variables depend on it, including variables such as |
4702 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4715 # 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 | 4716 # 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 | 4717 # 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, | 4718 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4706 # and therefore SYMROOT, needs to be set at the project level. | 4719 # and therefore SYMROOT, needs to be set at the project level. |
4707 'SYMROOT': '<(DEPTH)/xcodebuild', | 4720 'SYMROOT': '<(DEPTH)/xcodebuild', |
4708 }, | 4721 }, |
4709 } | 4722 } |
OLD | NEW |