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 |
11 # Chromium-specific code, as opposed to external code. This variable is | 11 # Chromium-specific code, as opposed to external code. This variable is |
12 # used to control such things as the set of warnings to enable, and | 12 # used to control such things as the set of warnings to enable, and |
13 # whether warnings are treated as errors. | 13 # whether warnings are treated as errors. |
14 'chromium_code%': 0, | 14 'chromium_code%': 0, |
15 | 15 |
| 16 'internal_pdf%': 0, |
| 17 |
16 # Variables expected to be overriden on the GYP command line (-D) or by | 18 # Variables expected to be overriden on the GYP command line (-D) or by |
17 # ~/.gyp/include.gypi. | 19 # ~/.gyp/include.gypi. |
18 | 20 |
19 # Putting a variables dict inside another variables dict looks kind of | 21 # Putting a variables dict inside another variables dict looks kind of |
20 # weird. This is done so that "branding" and "buildtype" are defined as | 22 # weird. This is done so that "branding" and "buildtype" are defined as |
21 # variables within the outer variables dict here. This is necessary | 23 # variables within the outer variables dict here. This is necessary |
22 # to get these variables defined for the conditions within this variables | 24 # to get these variables defined for the conditions within this variables |
23 # dict that operate on these variables. | 25 # dict that operate on these variables. |
24 'variables': { | 26 'variables': { |
25 # Override branding to select the desired branding flavor. | 27 # Override branding to select the desired branding flavor. |
(...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1377 # and therefore SYMROOT, needs to be set at the project level. | 1379 # and therefore SYMROOT, needs to be set at the project level. |
1378 'SYMROOT': '<(DEPTH)/xcodebuild', | 1380 'SYMROOT': '<(DEPTH)/xcodebuild', |
1379 }, | 1381 }, |
1380 } | 1382 } |
1381 | 1383 |
1382 # Local Variables: | 1384 # Local Variables: |
1383 # tab-width:2 | 1385 # tab-width:2 |
1384 # indent-tabs-mode:nil | 1386 # indent-tabs-mode:nil |
1385 # End: | 1387 # End: |
1386 # vim: set expandtab tabstop=2 shiftwidth=2: | 1388 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |