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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 # http://crbug.com/105550 | 367 # http://crbug.com/105550 |
368 'use_canvas_skia%': 0, | 368 'use_canvas_skia%': 0, |
369 | 369 |
370 # Set to "tsan", "memcheck", or "drmemory" to configure the build to work | 370 # Set to "tsan", "memcheck", or "drmemory" to configure the build to work |
371 # with one of those tools. | 371 # with one of those tools. |
372 'build_for_tool%': '', | 372 'build_for_tool%': '', |
373 | 373 |
374 # Whether tests targets should be run, archived or just have the | 374 # Whether tests targets should be run, archived or just have the |
375 # dependencies verified. All the tests targets have the '_run' suffix, | 375 # dependencies verified. All the tests targets have the '_run' suffix, |
376 # e.g. base_unittests_run runs the target base_unittests. The test target | 376 # e.g. base_unittests_run runs the target base_unittests. The test target |
377 # always calls tools/isolate/isolate.py. See the script's --help for more | 377 # always calls tools/swarm_client/isolate.py. See the script's --help for |
378 # information and the valid --mode values. Meant to be overriden with | 378 # more information and the valid --mode values. Meant to be overriden with |
379 # GYP_DEFINES. | 379 # GYP_DEFINES. |
380 # TODO(maruel): Converted the default from 'check' to 'noop' so work can | 380 # TODO(maruel): Converted the default from 'check' to 'noop' so work can |
381 # be done while the builders are being reconfigured to check out test data | 381 # be done while the builders are being reconfigured to check out test data |
382 # files. | 382 # files. |
383 'test_isolation_mode%': 'noop', | 383 'test_isolation_mode%': 'noop', |
384 # It must not be '<(PRODUCT_DIR)' alone, the '/' is necessary otherwise | 384 # It must not be '<(PRODUCT_DIR)' alone, the '/' is necessary otherwise |
385 # gyp will remove duplicate flags, causing isolate.py to be confused. | 385 # gyp will remove duplicate flags, causing isolate.py to be confused. |
386 'test_isolation_outdir%': '<(PRODUCT_DIR)/isolate', | 386 'test_isolation_outdir%': '<(PRODUCT_DIR)/isolate', |
387 | 387 |
388 # Force rlz to use chrome's networking stack. | 388 # Force rlz to use chrome's networking stack. |
(...skipping 3127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3516 # settings in target dicts. SYMROOT is a special case, because many other | 3516 # settings in target dicts. SYMROOT is a special case, because many other |
3517 # Xcode variables depend on it, including variables such as | 3517 # Xcode variables depend on it, including variables such as |
3518 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3518 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3519 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3519 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3520 # files to appear (when present) in the UI as actual files and not red | 3520 # files to appear (when present) in the UI as actual files and not red |
3521 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3521 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3522 # and therefore SYMROOT, needs to be set at the project level. | 3522 # and therefore SYMROOT, needs to be set at the project level. |
3523 'SYMROOT': '<(DEPTH)/xcodebuild', | 3523 'SYMROOT': '<(DEPTH)/xcodebuild', |
3524 }, | 3524 }, |
3525 } | 3525 } |
OLD | NEW |