| 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 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 # Variable 'component' is for cases where we would like to build some | 112 # Variable 'component' is for cases where we would like to build some |
| 113 # components as dynamic shared libraries but still need variable | 113 # components as dynamic shared libraries but still need variable |
| 114 # 'library' for static libraries. | 114 # 'library' for static libraries. |
| 115 # By default, component is set to whatever library is set to and | 115 # By default, component is set to whatever library is set to and |
| 116 # it can be overriden by the GYP command line or by ~/.gyp/include.gypi. | 116 # it can be overriden by the GYP command line or by ~/.gyp/include.gypi. |
| 117 'component%': '<(library)', | 117 'component%': '<(library)', |
| 118 | 118 |
| 119 # Set to select the Title Case versions of strings in GRD files. | 119 # Set to select the Title Case versions of strings in GRD files. |
| 120 'use_titlecase_in_grd_files%': 0, | 120 'use_titlecase_in_grd_files%': 0, |
| 121 | 121 |
| 122 # Use translations provided by volunteers at launchpad.net. | 122 # Use translations provided by volunteers at launchpad.net. This |
| 123 # currently only works on Linux. |
| 123 'use_third_party_translations%': 0, | 124 'use_third_party_translations%': 0, |
| 124 | 125 |
| 125 # Remoting compilation is enabled by default. Set to 0 to disable. | 126 # Remoting compilation is enabled by default. Set to 0 to disable. |
| 126 'remoting%': 1, | 127 'remoting%': 1, |
| 127 | 128 |
| 128 'conditions': [ | 129 'conditions': [ |
| 129 # A flag to enable or disable our compile-time dependency | 130 # A flag to enable or disable our compile-time dependency |
| 130 # on gnome-keyring. If that dependency is disabled, no gnome-keyring | 131 # on gnome-keyring. If that dependency is disabled, no gnome-keyring |
| 131 # support will be available. This option is useful | 132 # support will be available. This option is useful |
| 132 # for Linux distributions. | 133 # for Linux distributions. |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 'grit_defines': ['-D', 'touchui'], | 471 'grit_defines': ['-D', 'touchui'], |
| 471 }], | 472 }], |
| 472 ['remoting==1', { | 473 ['remoting==1', { |
| 473 'grit_defines': ['-D', 'remoting'], | 474 'grit_defines': ['-D', 'remoting'], |
| 474 }], | 475 }], |
| 475 ['use_titlecase_in_grd_files==1', { | 476 ['use_titlecase_in_grd_files==1', { |
| 476 'grit_defines': ['-D', 'use_titlecase'], | 477 'grit_defines': ['-D', 'use_titlecase'], |
| 477 }], | 478 }], |
| 478 ['use_third_party_translations==1', { | 479 ['use_third_party_translations==1', { |
| 479 'grit_defines': ['-D', 'use_third_party_translations'], | 480 'grit_defines': ['-D', 'use_third_party_translations'], |
| 481 'locales': ['ast', 'eu', 'gl', 'ka', 'ku', 'ug'], |
| 480 }], | 482 }], |
| 481 ], | 483 ], |
| 482 }, | 484 }, |
| 483 'target_defaults': { | 485 'target_defaults': { |
| 484 'variables': { | 486 'variables': { |
| 485 # The condition that operates on chromium_code is in a target_conditions | 487 # The condition that operates on chromium_code is in a target_conditions |
| 486 # section, and will not have access to the default fallback value of | 488 # section, and will not have access to the default fallback value of |
| 487 # chromium_code at the top of this file, or to the chromium_code | 489 # chromium_code at the top of this file, or to the chromium_code |
| 488 # variable placed at the root variables scope of .gyp files, because | 490 # variable placed at the root variables scope of .gyp files, because |
| 489 # those variables are not set at target scope. As a workaround, | 491 # those variables are not set at target scope. As a workaround, |
| (...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1547 # and therefore SYMROOT, needs to be set at the project level. | 1549 # and therefore SYMROOT, needs to be set at the project level. |
| 1548 'SYMROOT': '<(DEPTH)/xcodebuild', | 1550 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1549 }, | 1551 }, |
| 1550 } | 1552 } |
| 1551 | 1553 |
| 1552 # Local Variables: | 1554 # Local Variables: |
| 1553 # tab-width:2 | 1555 # tab-width:2 |
| 1554 # indent-tabs-mode:nil | 1556 # indent-tabs-mode:nil |
| 1555 # End: | 1557 # End: |
| 1556 # vim: set expandtab tabstop=2 shiftwidth=2: | 1558 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |