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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 # be done while the builders are being reconfigured to check out test data | 400 # be done while the builders are being reconfigured to check out test data |
401 # files. | 401 # files. |
402 'test_isolation_mode%': 'noop', | 402 'test_isolation_mode%': 'noop', |
403 # It must not be '<(PRODUCT_DIR)' alone, the '/' is necessary otherwise | 403 # It must not be '<(PRODUCT_DIR)' alone, the '/' is necessary otherwise |
404 # gyp will remove duplicate flags, causing isolate.py to be confused. | 404 # gyp will remove duplicate flags, causing isolate.py to be confused. |
405 'test_isolation_outdir%': '<(PRODUCT_DIR)/isolate', | 405 'test_isolation_outdir%': '<(PRODUCT_DIR)/isolate', |
406 | 406 |
407 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86', | 407 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86', |
408 'wix_path%': '<(DEPTH)/third_party/wix', | 408 'wix_path%': '<(DEPTH)/third_party/wix', |
409 | 409 |
410 'enable_settings_app%': 0, | |
411 | |
412 'conditions': [ | 410 'conditions': [ |
413 # TODO(epoger): Figure out how to set use_skia=1 for Mac outside of | 411 # TODO(epoger): Figure out how to set use_skia=1 for Mac outside of |
414 # the 'conditions' clause. Initial attempts resulted in chromium and | 412 # the 'conditions' clause. Initial attempts resulted in chromium and |
415 # webkit disagreeing on its setting. | 413 # webkit disagreeing on its setting. |
416 ['OS=="mac"', { | 414 ['OS=="mac"', { |
417 'use_skia%': 1, | 415 'use_skia%': 1, |
418 }, { | 416 }, { |
419 'use_skia%': 1, | 417 'use_skia%': 1, |
420 }], | 418 }], |
421 | 419 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 ['chromeos==1', { | 565 ['chromeos==1', { |
568 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. | 566 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. |
569 'use_libjpeg_turbo%': 0, | 567 'use_libjpeg_turbo%': 0, |
570 }], | 568 }], |
571 | 569 |
572 ['OS=="android"', { | 570 ['OS=="android"', { |
573 # When building as part of the Android system, use system libraries | 571 # When building as part of the Android system, use system libraries |
574 # where possible to reduce ROM size. | 572 # where possible to reduce ROM size. |
575 'use_system_libjpeg%': '<(android_build_type)', | 573 'use_system_libjpeg%': '<(android_build_type)', |
576 }], | 574 }], |
| 575 |
| 576 # Enable Settings App only on Windows. |
| 577 ['enable_app_list==1 and OS=="win"', { |
| 578 'enable_settings_app%': 1, |
| 579 }, { |
| 580 'enable_settings_app%': 0, |
| 581 }], |
577 ], | 582 ], |
578 | 583 |
579 # Set this to 1 to use the Google-internal file containing | 584 # Set this to 1 to use the Google-internal file containing |
580 # official API keys for Google Chrome even in a developer build. | 585 # official API keys for Google Chrome even in a developer build. |
581 # Setting this variable explicitly to 1 will cause your build to | 586 # Setting this variable explicitly to 1 will cause your build to |
582 # fail if the internal file is missing. | 587 # fail if the internal file is missing. |
583 # | 588 # |
584 # Set this to 0 to not use the internal file, even when it | 589 # Set this to 0 to not use the internal file, even when it |
585 # exists in your checkout. | 590 # exists in your checkout. |
586 # | 591 # |
(...skipping 3314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3901 # settings in target dicts. SYMROOT is a special case, because many other | 3906 # settings in target dicts. SYMROOT is a special case, because many other |
3902 # Xcode variables depend on it, including variables such as | 3907 # Xcode variables depend on it, including variables such as |
3903 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3908 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3904 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3909 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3905 # files to appear (when present) in the UI as actual files and not red | 3910 # files to appear (when present) in the UI as actual files and not red |
3906 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3911 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3907 # and therefore SYMROOT, needs to be set at the project level. | 3912 # and therefore SYMROOT, needs to be set at the project level. |
3908 'SYMROOT': '<(DEPTH)/xcodebuild', | 3913 'SYMROOT': '<(DEPTH)/xcodebuild', |
3909 }, | 3914 }, |
3910 } | 3915 } |
OLD | NEW |