| 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 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1265 4251, # class 'std::xx' needs to have dll-interface. | 1265 4251, # class 'std::xx' needs to have dll-interface. |
| 1266 ], | 1266 ], |
| 1267 }], | 1267 }], |
| 1268 ['chromeos!=1', { | 1268 ['chromeos!=1', { |
| 1269 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] | 1269 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] |
| 1270 }], | 1270 }], |
| 1271 ['toolkit_views==0', { | 1271 ['toolkit_views==0', { |
| 1272 'sources/': [ ['exclude', '_views\\.(h|cc)$'] ] | 1272 'sources/': [ ['exclude', '_views\\.(h|cc)$'] ] |
| 1273 }], | 1273 }], |
| 1274 ['use_aura==0', { | 1274 ['use_aura==0', { |
| 1275 'sources/': [ ['exclude', '_aura\\.(h|cc)$'] ] | 1275 'sources/': [ ['exclude', '_aura\\.(h|cc)$'], |
| 1276 ['exclude', '(^|/)aura/'], |
| 1277 ] |
| 1276 }], | 1278 }], |
| 1277 ['use_aura==0 or use_x11==0', { | 1279 ['use_aura==0 or use_x11==0', { |
| 1278 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] | 1280 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] |
| 1279 }], | 1281 }], |
| 1280 ['use_aura==0 or OS!="win"', { | 1282 ['use_aura==0 or OS!="win"', { |
| 1281 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] | 1283 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] |
| 1282 }], | 1284 }], |
| 1283 ], | 1285 ], |
| 1284 }], | 1286 }], |
| 1285 ], # target_conditions for 'target_defaults' | 1287 ], # target_conditions for 'target_defaults' |
| (...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2556 # settings in target dicts. SYMROOT is a special case, because many other | 2558 # settings in target dicts. SYMROOT is a special case, because many other |
| 2557 # Xcode variables depend on it, including variables such as | 2559 # Xcode variables depend on it, including variables such as |
| 2558 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2560 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2559 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2561 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2560 # files to appear (when present) in the UI as actual files and not red | 2562 # files to appear (when present) in the UI as actual files and not red |
| 2561 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2563 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2562 # and therefore SYMROOT, needs to be set at the project level. | 2564 # and therefore SYMROOT, needs to be set at the project level. |
| 2563 'SYMROOT': '<(DEPTH)/xcodebuild', | 2565 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2564 }, | 2566 }, |
| 2565 } | 2567 } |
| OLD | NEW |