| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 }], | 654 }], |
| 655 ['chromeos==1', { | 655 ['chromeos==1', { |
| 656 'grit_defines': ['-D', 'chromeos'], | 656 'grit_defines': ['-D', 'chromeos'], |
| 657 }], | 657 }], |
| 658 ['toolkit_views==1', { | 658 ['toolkit_views==1', { |
| 659 'grit_defines': ['-D', 'toolkit_views'], | 659 'grit_defines': ['-D', 'toolkit_views'], |
| 660 }], | 660 }], |
| 661 ['use_only_pure_views==1', { | 661 ['use_only_pure_views==1', { |
| 662 'grit_defines': ['-D', 'use_only_pure_views'], | 662 'grit_defines': ['-D', 'use_only_pure_views'], |
| 663 }], | 663 }], |
| 664 ['use_aura==1', { |
| 665 'grit_defines': ['-D', 'use_aura'], |
| 666 }], |
| 664 ['touchui==1', { | 667 ['touchui==1', { |
| 665 'grit_defines': ['-D', 'touchui'], | 668 'grit_defines': ['-D', 'touchui'], |
| 666 }], | 669 }], |
| 667 ['webui_dialogs==1', { | 670 ['webui_dialogs==1', { |
| 668 'grit_defines': ['-D', 'webui_dialogs'], | 671 'grit_defines': ['-D', 'webui_dialogs'], |
| 669 }], | 672 }], |
| 670 ['file_manager_extension==1', { | 673 ['file_manager_extension==1', { |
| 671 'grit_defines': ['-D', 'file_manager_extension'], | 674 'grit_defines': ['-D', 'file_manager_extension'], |
| 672 }], | 675 }], |
| 673 ['webui_task_manager==1', { | 676 ['webui_task_manager==1', { |
| (...skipping 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2048 # settings in target dicts. SYMROOT is a special case, because many other | 2051 # settings in target dicts. SYMROOT is a special case, because many other |
| 2049 # Xcode variables depend on it, including variables such as | 2052 # Xcode variables depend on it, including variables such as |
| 2050 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2053 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2051 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2054 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2052 # files to appear (when present) in the UI as actual files and not red | 2055 # files to appear (when present) in the UI as actual files and not red |
| 2053 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2056 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2054 # and therefore SYMROOT, needs to be set at the project level. | 2057 # and therefore SYMROOT, needs to be set at the project level. |
| 2055 'SYMROOT': '<(DEPTH)/xcodebuild', | 2058 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2056 }, | 2059 }, |
| 2057 } | 2060 } |
| OLD | NEW |