| 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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 # Enables theme support, which is enabled by default. Support for | 301 # Enables theme support, which is enabled by default. Support for |
| 302 # disabling depends on the platform. | 302 # disabling depends on the platform. |
| 303 'enable_themes%': 1, | 303 'enable_themes%': 1, |
| 304 | 304 |
| 305 # Enables support for background apps. | 305 # Enables support for background apps. |
| 306 'enable_background%': 1, | 306 'enable_background%': 1, |
| 307 | 307 |
| 308 # Enable the task manager by default. | 308 # Enable the task manager by default. |
| 309 'enable_task_manager%': 1, | 309 'enable_task_manager%': 1, |
| 310 | 310 |
| 311 # Enable FTP support by default. |
| 312 'disable_ftp_support%': 0, |
| 313 |
| 311 # XInput2 multitouch support is disabled by default (use_xi2_mt=0). | 314 # XInput2 multitouch support is disabled by default (use_xi2_mt=0). |
| 312 # Setting to non-zero value enables XI2 MT. When XI2 MT is enabled, | 315 # Setting to non-zero value enables XI2 MT. When XI2 MT is enabled, |
| 313 # the input value also defines the required XI2 minor minimum version. | 316 # the input value also defines the required XI2 minor minimum version. |
| 314 # For example, use_xi2_mt=2 means XI2.2 or above version is required. | 317 # For example, use_xi2_mt=2 means XI2.2 or above version is required. |
| 315 'use_xi2_mt%': 0, | 318 'use_xi2_mt%': 0, |
| 316 | 319 |
| 317 # Use of precompiled headers on Windows. | 320 # Use of precompiled headers on Windows. |
| 318 # | 321 # |
| 319 # This is on by default in VS 2010, but off by default for VS | 322 # This is on by default in VS 2010, but off by default for VS |
| 320 # 2008 because of complications that it can cause with our | 323 # 2008 because of complications that it can cause with our |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 'enable_extensions%': 0, | 462 'enable_extensions%': 0, |
| 460 'enable_printing%': 0, | 463 'enable_printing%': 0, |
| 461 'enable_themes%': 0, | 464 'enable_themes%': 0, |
| 462 'enable_webrtc%': 0, | 465 'enable_webrtc%': 0, |
| 463 'proprietary_codecs%': 1, | 466 'proprietary_codecs%': 1, |
| 464 'remoting%': 0, | 467 'remoting%': 0, |
| 465 }], | 468 }], |
| 466 | 469 |
| 467 ['OS=="ios"', { | 470 ['OS=="ios"', { |
| 468 'enable_automation%': 0, | 471 'enable_automation%': 0, |
| 472 'disable_ftp_support%': 1, |
| 469 'remoting%': 0, | 473 'remoting%': 0, |
| 470 }], | 474 }], |
| 471 | 475 |
| 472 # Use GPU accelerated cross process image transport by default | 476 # Use GPU accelerated cross process image transport by default |
| 473 # on linux builds with the Aura window manager | 477 # on linux builds with the Aura window manager |
| 474 ['use_aura==1 and OS=="linux"', { | 478 ['use_aura==1 and OS=="linux"', { |
| 475 'ui_compositor_image_transport%': 1, | 479 'ui_compositor_image_transport%': 1, |
| 476 }, { | 480 }, { |
| 477 'ui_compositor_image_transport%': 0, | 481 'ui_compositor_image_transport%': 0, |
| 478 }], | 482 }], |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 'enable_themes%': '<(enable_themes)', | 602 'enable_themes%': '<(enable_themes)', |
| 599 'enable_background%': '<(enable_background)', | 603 'enable_background%': '<(enable_background)', |
| 600 'linux_use_gold_binary%': '<(linux_use_gold_binary)', | 604 'linux_use_gold_binary%': '<(linux_use_gold_binary)', |
| 601 'linux_use_gold_flags%': '<(linux_use_gold_flags)', | 605 'linux_use_gold_flags%': '<(linux_use_gold_flags)', |
| 602 'use_canvas_skia%': '<(use_canvas_skia)', | 606 'use_canvas_skia%': '<(use_canvas_skia)', |
| 603 'test_isolation_mode%': '<(test_isolation_mode)', | 607 'test_isolation_mode%': '<(test_isolation_mode)', |
| 604 'test_isolation_outdir%': '<(test_isolation_outdir)', | 608 'test_isolation_outdir%': '<(test_isolation_outdir)', |
| 605 'enable_automation%': '<(enable_automation)', | 609 'enable_automation%': '<(enable_automation)', |
| 606 'enable_printing%': '<(enable_printing)', | 610 'enable_printing%': '<(enable_printing)', |
| 607 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', | 611 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', |
| 612 'disable_ftp_support%': '<(disable_ftp_support)', |
| 608 'force_rlz_use_chrome_net%': '<(force_rlz_use_chrome_net)', | 613 'force_rlz_use_chrome_net%': '<(force_rlz_use_chrome_net)', |
| 609 'enable_task_manager%': '<(enable_task_manager)', | 614 'enable_task_manager%': '<(enable_task_manager)', |
| 610 'sas_dll_path%': '<(sas_dll_path)', | 615 'sas_dll_path%': '<(sas_dll_path)', |
| 611 'wix_path%': '<(wix_path)', | 616 'wix_path%': '<(wix_path)', |
| 612 'android_upstream_bringup%': '<(android_upstream_bringup)', | 617 'android_upstream_bringup%': '<(android_upstream_bringup)', |
| 613 'use_system_libjpeg%': '<(use_system_libjpeg)', | 618 'use_system_libjpeg%': '<(use_system_libjpeg)', |
| 614 'android_build_type%': '<(android_build_type)', | 619 'android_build_type%': '<(android_build_type)', |
| 615 | 620 |
| 616 # Use system yasm instead of bundled one. | 621 # Use system yasm instead of bundled one. |
| 617 'use_system_yasm%': 0, | 622 'use_system_yasm%': 0, |
| (...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1615 }], | 1620 }], |
| 1616 ['enable_automation==1', { | 1621 ['enable_automation==1', { |
| 1617 'defines': ['ENABLE_AUTOMATION=1'], | 1622 'defines': ['ENABLE_AUTOMATION=1'], |
| 1618 }], | 1623 }], |
| 1619 ['enable_printing==1', { | 1624 ['enable_printing==1', { |
| 1620 'defines': ['ENABLE_PRINTING=1'], | 1625 'defines': ['ENABLE_PRINTING=1'], |
| 1621 }], | 1626 }], |
| 1622 ['enable_captive_portal_detection==1', { | 1627 ['enable_captive_portal_detection==1', { |
| 1623 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], | 1628 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], |
| 1624 }], | 1629 }], |
| 1630 ['disable_ftp_support==1', { |
| 1631 'defines': ['DISABLE_FTP_SUPPORT=1'], |
| 1632 }], |
| 1625 ], # conditions for 'target_defaults' | 1633 ], # conditions for 'target_defaults' |
| 1626 'target_conditions': [ | 1634 'target_conditions': [ |
| 1627 ['enable_wexit_time_destructors==1', { | 1635 ['enable_wexit_time_destructors==1', { |
| 1628 'conditions': [ | 1636 'conditions': [ |
| 1629 [ 'clang==1', { | 1637 [ 'clang==1', { |
| 1630 'cflags': [ | 1638 'cflags': [ |
| 1631 '-Wexit-time-destructors', | 1639 '-Wexit-time-destructors', |
| 1632 ], | 1640 ], |
| 1633 'xcode_settings': { | 1641 'xcode_settings': { |
| 1634 'WARNING_CFLAGS': [ | 1642 'WARNING_CFLAGS': [ |
| (...skipping 1784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3419 # settings in target dicts. SYMROOT is a special case, because many other | 3427 # settings in target dicts. SYMROOT is a special case, because many other |
| 3420 # Xcode variables depend on it, including variables such as | 3428 # Xcode variables depend on it, including variables such as |
| 3421 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3429 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3422 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3430 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3423 # files to appear (when present) in the UI as actual files and not red | 3431 # files to appear (when present) in the UI as actual files and not red |
| 3424 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3432 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3425 # and therefore SYMROOT, needs to be set at the project level. | 3433 # and therefore SYMROOT, needs to be set at the project level. |
| 3426 'SYMROOT': '<(DEPTH)/xcodebuild', | 3434 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3427 }, | 3435 }, |
| 3428 } | 3436 } |
| OLD | NEW |