OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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': { | 9 'variables': { |
10 # .gyp files or targets should set chromium_code to 1 if they build | 10 # .gyp files or targets should set chromium_code to 1 if they build |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 'locales': [ | 381 'locales': [ |
382 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', | 382 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', |
383 'en-US', 'es-419', 'es', 'et', 'fi', 'fil', 'fr', 'gu', 'he', | 383 'en-US', 'es-419', 'es', 'et', 'fi', 'fil', 'fr', 'gu', 'he', |
384 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', | 384 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', |
385 'ml', 'mr', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', | 385 'ml', 'mr', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', |
386 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', | 386 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', |
387 'vi', 'zh-CN', 'zh-TW', | 387 'vi', 'zh-CN', 'zh-TW', |
388 ], | 388 ], |
389 }, | 389 }, |
390 'target_defaults': { | 390 'target_defaults': { |
| 391 'defines': ['V8_REPORT_EXECUTABLE_MEMORY_USAGE'], |
391 'variables': { | 392 'variables': { |
392 # The condition that operates on chromium_code is in a target_conditions | 393 # The condition that operates on chromium_code is in a target_conditions |
393 # section, and will not have access to the default fallback value of | 394 # section, and will not have access to the default fallback value of |
394 # chromium_code at the top of this file, or to the chromium_code | 395 # chromium_code at the top of this file, or to the chromium_code |
395 # variable placed at the root variables scope of .gyp files, because | 396 # variable placed at the root variables scope of .gyp files, because |
396 # those variables are not set at target scope. As a workaround, | 397 # those variables are not set at target scope. As a workaround, |
397 # if chromium_code is not set at target scope, define it in target scope | 398 # if chromium_code is not set at target scope, define it in target scope |
398 # to contain whatever value it has during early variable expansion. | 399 # to contain whatever value it has during early variable expansion. |
399 # That's enough to make it available during target conditional | 400 # That's enough to make it available during target conditional |
400 # processing. | 401 # processing. |
(...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1437 # and therefore SYMROOT, needs to be set at the project level. | 1438 # and therefore SYMROOT, needs to be set at the project level. |
1438 'SYMROOT': '<(DEPTH)/xcodebuild', | 1439 'SYMROOT': '<(DEPTH)/xcodebuild', |
1439 }, | 1440 }, |
1440 } | 1441 } |
1441 | 1442 |
1442 # Local Variables: | 1443 # Local Variables: |
1443 # tab-width:2 | 1444 # tab-width:2 |
1444 # indent-tabs-mode:nil | 1445 # indent-tabs-mode:nil |
1445 # End: | 1446 # End: |
1446 # vim: set expandtab tabstop=2 shiftwidth=2: | 1447 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |