| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 1410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1421 'win_release_InlineFunctionExpansion': '1', | 1421 'win_release_InlineFunctionExpansion': '1', |
| 1422 'win_release_OmitFramePointers': '0', | 1422 'win_release_OmitFramePointers': '0', |
| 1423 # Ditto for debug, to support bumping win_debug_Optimization. | 1423 # Ditto for debug, to support bumping win_debug_Optimization. |
| 1424 'win_debug_InlineFunctionExpansion': 0, | 1424 'win_debug_InlineFunctionExpansion': 0, |
| 1425 'win_debug_OmitFramePointers': 0, | 1425 'win_debug_OmitFramePointers': 0, |
| 1426 # Keep the code under #ifndef NVALGRIND. | 1426 # Keep the code under #ifndef NVALGRIND. |
| 1427 'release_valgrind_build': 1, | 1427 'release_valgrind_build': 1, |
| 1428 }], | 1428 }], |
| 1429 | 1429 |
| 1430 # Enable RLZ on Win and Mac. | 1430 # Enable RLZ on Win and Mac. |
| 1431 ['branding=="Chrome" and (OS=="win" or OS=="mac")', { | 1431 ['OS=="win" or OS=="mac"', { |
| 1432 'enable_rlz%': 1, | 1432 'enable_rlz%': 1, |
| 1433 }], | 1433 }], |
| 1434 ], | 1434 ], |
| 1435 | 1435 |
| 1436 # List of default apps to install in new profiles. The first list contains | 1436 # List of default apps to install in new profiles. The first list contains |
| 1437 # the source files as found in svn. The second list, used only for linux, | 1437 # the source files as found in svn. The second list, used only for linux, |
| 1438 # contains the destination location for each of the files. When a crx | 1438 # contains the destination location for each of the files. When a crx |
| 1439 # is added or removed from the list, the chrome/browser/resources/ | 1439 # is added or removed from the list, the chrome/browser/resources/ |
| 1440 # default_apps/external_extensions.json file must also be updated. | 1440 # default_apps/external_extensions.json file must also be updated. |
| 1441 'default_apps_list': [ | 1441 'default_apps_list': [ |
| (...skipping 2355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3797 # settings in target dicts. SYMROOT is a special case, because many other | 3797 # settings in target dicts. SYMROOT is a special case, because many other |
| 3798 # Xcode variables depend on it, including variables such as | 3798 # Xcode variables depend on it, including variables such as |
| 3799 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3799 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3800 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3800 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3801 # files to appear (when present) in the UI as actual files and not red | 3801 # files to appear (when present) in the UI as actual files and not red |
| 3802 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3802 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3803 # and therefore SYMROOT, needs to be set at the project level. | 3803 # and therefore SYMROOT, needs to be set at the project level. |
| 3804 'SYMROOT': '<(DEPTH)/xcodebuild', | 3804 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3805 }, | 3805 }, |
| 3806 } | 3806 } |
| OLD | NEW |