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