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 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1349 4251, # class 'std::xx' needs to have dll-interface. | 1349 4251, # class 'std::xx' needs to have dll-interface. |
1350 ], | 1350 ], |
1351 }], | 1351 }], |
1352 ['chromeos!=1', { | 1352 ['chromeos!=1', { |
1353 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] | 1353 'sources/': [ ['exclude', '_chromeos\\.(h|cc)$'] ] |
1354 }], | 1354 }], |
1355 ['toolkit_views==0', { | 1355 ['toolkit_views==0', { |
1356 'sources/': [ ['exclude', '_views\\.(h|cc)$'] ] | 1356 'sources/': [ ['exclude', '_views\\.(h|cc)$'] ] |
1357 }], | 1357 }], |
1358 ['use_aura==0', { | 1358 ['use_aura==0', { |
1359 'sources/': [ ['exclude', '_aura\\.(h|cc)$'], | 1359 'sources/': [ ['exclude', '_aura(_unittest)?\\.(h|cc)$'], |
1360 ['exclude', '(^|/)aura/'], | 1360 ['exclude', '(^|/)aura/'], |
1361 ] | 1361 ] |
1362 }], | 1362 }], |
1363 ['use_aura==0 or use_x11==0', { | 1363 ['use_aura==0 or use_x11==0', { |
1364 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] | 1364 'sources/': [ ['exclude', '_aurax11\\.(h|cc)$'] ] |
1365 }], | 1365 }], |
1366 ['use_aura==0 or OS!="win"', { | 1366 ['use_aura==0 or OS!="win"', { |
1367 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] | 1367 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] |
1368 }], | 1368 }], |
1369 ], | 1369 ], |
(...skipping 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2762 # settings in target dicts. SYMROOT is a special case, because many other | 2762 # settings in target dicts. SYMROOT is a special case, because many other |
2763 # Xcode variables depend on it, including variables such as | 2763 # Xcode variables depend on it, including variables such as |
2764 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2764 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2765 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2765 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2766 # files to appear (when present) in the UI as actual files and not red | 2766 # files to appear (when present) in the UI as actual files and not red |
2767 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2767 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2768 # and therefore SYMROOT, needs to be set at the project level. | 2768 # and therefore SYMROOT, needs to be set at the project level. |
2769 'SYMROOT': '<(DEPTH)/xcodebuild', | 2769 'SYMROOT': '<(DEPTH)/xcodebuild', |
2770 }, | 2770 }, |
2771 } | 2771 } |
OLD | NEW |