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 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1233 }], | 1233 }], |
1234 ['chromeos!=1', { | 1234 ['chromeos!=1', { |
1235 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] | 1235 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] |
1236 }], | 1236 }], |
1237 ['toolkit_views==0', { | 1237 ['toolkit_views==0', { |
1238 'sources/': [ ['exclude', '_views\\.(h|cc)$'] ] | 1238 'sources/': [ ['exclude', '_views\\.(h|cc)$'] ] |
1239 }], | 1239 }], |
1240 ['use_aura==0', { | 1240 ['use_aura==0', { |
1241 'sources/': [ ['exclude', '_aura\\.(h|cc)$'] ] | 1241 'sources/': [ ['exclude', '_aura\\.(h|cc)$'] ] |
1242 }], | 1242 }], |
| 1243 ['use_aura==0 or use_x11==0', { |
| 1244 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] |
| 1245 }], |
| 1246 ['use_aura==0 or OS!="win"', { |
| 1247 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] |
| 1248 }], |
1243 ], | 1249 ], |
1244 }], | 1250 }], |
1245 ], # target_conditions for 'target_defaults' | 1251 ], # target_conditions for 'target_defaults' |
1246 'default_configuration': 'Debug', | 1252 'default_configuration': 'Debug', |
1247 'configurations': { | 1253 'configurations': { |
1248 # VCLinkerTool LinkIncremental values below: | 1254 # VCLinkerTool LinkIncremental values below: |
1249 # 0 == default | 1255 # 0 == default |
1250 # 1 == /INCREMENTAL:NO | 1256 # 1 == /INCREMENTAL:NO |
1251 # 2 == /INCREMENTAL | 1257 # 2 == /INCREMENTAL |
1252 # Debug links incremental, Release does not. | 1258 # Debug links incremental, Release does not. |
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2499 # settings in target dicts. SYMROOT is a special case, because many other | 2505 # settings in target dicts. SYMROOT is a special case, because many other |
2500 # Xcode variables depend on it, including variables such as | 2506 # Xcode variables depend on it, including variables such as |
2501 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2507 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2502 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2508 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2503 # files to appear (when present) in the UI as actual files and not red | 2509 # files to appear (when present) in the UI as actual files and not red |
2504 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2510 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2505 # and therefore SYMROOT, needs to be set at the project level. | 2511 # and therefore SYMROOT, needs to be set at the project level. |
2506 'SYMROOT': '<(DEPTH)/xcodebuild', | 2512 'SYMROOT': '<(DEPTH)/xcodebuild', |
2507 }, | 2513 }, |
2508 } | 2514 } |
OLD | NEW |