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 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1310 'sources/': [ ['exclude', '_aura\\.(h|cc)$'], | 1310 'sources/': [ ['exclude', '_aura\\.(h|cc)$'], |
1311 ['exclude', '(^|/)aura/'], | 1311 ['exclude', '(^|/)aura/'], |
1312 ] | 1312 ] |
1313 }], | 1313 }], |
1314 ['use_aura==0 or use_x11==0', { | 1314 ['use_aura==0 or use_x11==0', { |
1315 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] | 1315 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] |
1316 }], | 1316 }], |
1317 ['use_aura==0 or OS!="win"', { | 1317 ['use_aura==0 or OS!="win"', { |
1318 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] | 1318 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] |
1319 }], | 1319 }], |
| 1320 ['touchui!=1', { |
| 1321 'sources/': [ ['exclude', '_touch\\.(h|cc)$'] ] |
| 1322 }], |
1320 ], | 1323 ], |
1321 }], | 1324 }], |
1322 ], # target_conditions for 'target_defaults' | 1325 ], # target_conditions for 'target_defaults' |
1323 'default_configuration': 'Debug', | 1326 'default_configuration': 'Debug', |
1324 'configurations': { | 1327 'configurations': { |
1325 # VCLinkerTool LinkIncremental values below: | 1328 # VCLinkerTool LinkIncremental values below: |
1326 # 0 == default | 1329 # 0 == default |
1327 # 1 == /INCREMENTAL:NO | 1330 # 1 == /INCREMENTAL:NO |
1328 # 2 == /INCREMENTAL | 1331 # 2 == /INCREMENTAL |
1329 # Debug links incremental, Release does not. | 1332 # Debug links incremental, Release does not. |
(...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2601 # settings in target dicts. SYMROOT is a special case, because many other | 2604 # settings in target dicts. SYMROOT is a special case, because many other |
2602 # Xcode variables depend on it, including variables such as | 2605 # Xcode variables depend on it, including variables such as |
2603 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2606 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2604 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2607 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2605 # files to appear (when present) in the UI as actual files and not red | 2608 # files to appear (when present) in the UI as actual files and not red |
2606 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2609 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2607 # and therefore SYMROOT, needs to be set at the project level. | 2610 # and therefore SYMROOT, needs to be set at the project level. |
2608 'SYMROOT': '<(DEPTH)/xcodebuild', | 2611 'SYMROOT': '<(DEPTH)/xcodebuild', |
2609 }, | 2612 }, |
2610 } | 2613 } |
OLD | NEW |