| 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 # Set to "tsan", "memcheck", or "drmemory" to configure the build to work | 315 # Set to "tsan", "memcheck", or "drmemory" to configure the build to work |
| 316 # with one of those tools. | 316 # with one of those tools. |
| 317 'build_for_tool%': '', | 317 'build_for_tool%': '', |
| 318 | 318 |
| 319 # Whether tests targets should be run, archived or just have the | 319 # Whether tests targets should be run, archived or just have the |
| 320 # dependencies verified. All the tests targets have the '_run' suffix, | 320 # dependencies verified. All the tests targets have the '_run' suffix, |
| 321 # e.g. base_unittests_run runs the target base_unittests. The test target | 321 # e.g. base_unittests_run runs the target base_unittests. The test target |
| 322 # always calls tools/isolate/isolate.py. See the script's --help for more | 322 # always calls tools/isolate/isolate.py. See the script's --help for more |
| 323 # information and the valid --mode values. Meant to be overriden with | 323 # information and the valid --mode values. Meant to be overriden with |
| 324 # GYP_DEFINES. | 324 # GYP_DEFINES. |
| 325 'tests_run%': 'check', | 325 # TODO(maruel): Converted the default from 'check' to 'noop' so work can |
| 326 # be done while the builders are being reconfigured to check out test data |
| 327 # files. |
| 328 'tests_run%': 'noop', |
| 326 | 329 |
| 327 # Force rlz to use chrome's networking stack. | 330 # Force rlz to use chrome's networking stack. |
| 328 'force_rlz_use_chrome_net%': 1, | 331 'force_rlz_use_chrome_net%': 1, |
| 329 | 332 |
| 330 'platformsdk_path%': '<(DEPTH)/third_party/platformsdk_win7/files', | 333 'platformsdk_path%': '<(DEPTH)/third_party/platformsdk_win7/files', |
| 331 'wix_path%': '<(DEPTH)/third_party/wix', | 334 'wix_path%': '<(DEPTH)/third_party/wix', |
| 332 | 335 |
| 333 'conditions': [ | 336 'conditions': [ |
| 334 # TODO(epoger): Figure out how to set use_skia=1 for Mac outside of | 337 # TODO(epoger): Figure out how to set use_skia=1 for Mac outside of |
| 335 # the 'conditions' clause. Initial attempts resulted in chromium and | 338 # the 'conditions' clause. Initial attempts resulted in chromium and |
| (...skipping 2697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3033 # settings in target dicts. SYMROOT is a special case, because many other | 3036 # settings in target dicts. SYMROOT is a special case, because many other |
| 3034 # Xcode variables depend on it, including variables such as | 3037 # Xcode variables depend on it, including variables such as |
| 3035 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3038 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3036 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3039 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3037 # files to appear (when present) in the UI as actual files and not red | 3040 # files to appear (when present) in the UI as actual files and not red |
| 3038 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3041 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3039 # and therefore SYMROOT, needs to be set at the project level. | 3042 # and therefore SYMROOT, needs to be set at the project level. |
| 3040 'SYMROOT': '<(DEPTH)/xcodebuild', | 3043 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3041 }, | 3044 }, |
| 3042 } | 3045 } |
| OLD | NEW |