| 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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 | 438 |
| 439 ['OS=="win" or OS=="mac" or (OS=="linux" and use_aura==0)', { | 439 ['OS=="win" or OS=="mac" or (OS=="linux" and use_aura==0)', { |
| 440 'enable_one_click_signin%': 1, | 440 'enable_one_click_signin%': 1, |
| 441 }], | 441 }], |
| 442 | 442 |
| 443 ['OS=="android"', { | 443 ['OS=="android"', { |
| 444 'proprietary_codecs%': 1, | 444 'proprietary_codecs%': 1, |
| 445 'enable_webrtc%': 0, | 445 'enable_webrtc%': 0, |
| 446 }], | 446 }], |
| 447 | 447 |
| 448 ['OS=="ios"', { |
| 449 'enable_automation%': 0, |
| 450 'remoting%': 0, |
| 451 }], |
| 452 |
| 448 # Use GPU accelerated cross process image transport by default | 453 # Use GPU accelerated cross process image transport by default |
| 449 # on linux builds with the Aura window manager | 454 # on linux builds with the Aura window manager |
| 450 ['use_aura==1 and OS=="linux"', { | 455 ['use_aura==1 and OS=="linux"', { |
| 451 'ui_compositor_image_transport%': 1, | 456 'ui_compositor_image_transport%': 1, |
| 452 }, { | 457 }, { |
| 453 'ui_compositor_image_transport%': 0, | 458 'ui_compositor_image_transport%': 0, |
| 454 }], | 459 }], |
| 455 | 460 |
| 456 # Turn precompiled headers on by default for VS 2010. | 461 # Turn precompiled headers on by default for VS 2010. |
| 457 ['OS=="win" and MSVS_VERSION=="2010" and buildtype!="Official"', { | 462 ['OS=="win" and MSVS_VERSION=="2010" and buildtype!="Official"', { |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 ['branding=="Chrome"', { | 833 ['branding=="Chrome"', { |
| 829 'linux_breakpad%': 1, | 834 'linux_breakpad%': 1, |
| 830 }], | 835 }], |
| 831 # All Chrome builds have breakpad symbols, but only process the | 836 # All Chrome builds have breakpad symbols, but only process the |
| 832 # symbols from official builds. | 837 # symbols from official builds. |
| 833 ['(branding=="Chrome" and buildtype=="Official")', { | 838 ['(branding=="Chrome" and buildtype=="Official")', { |
| 834 'linux_dump_symbols%': 1, | 839 'linux_dump_symbols%': 1, |
| 835 }], | 840 }], |
| 836 ], | 841 ], |
| 837 }], # os_posix==1 and OS!="mac" and OS!="ios" | 842 }], # os_posix==1 and OS!="mac" and OS!="ios" |
| 843 ['OS=="ios"', { |
| 844 'disable_nacl%': 1, |
| 845 }], |
| 838 ['OS=="android"', { | 846 ['OS=="android"', { |
| 839 # Location of Android NDK. | 847 # Location of Android NDK. |
| 840 'variables': { | 848 'variables': { |
| 841 'variables': { | 849 'variables': { |
| 842 'android_ndk_root%': '<!(/bin/echo -n $ANDROID_NDK_ROOT)', | 850 'android_ndk_root%': '<!(/bin/echo -n $ANDROID_NDK_ROOT)', |
| 843 # Android uses x86 instead of ia32 for their target_arch | 851 # Android uses x86 instead of ia32 for their target_arch |
| 844 # designation. | 852 # designation. |
| 845 # TODO(wistoch): Adjust the target_arch naming scheme to avoid | 853 # TODO(wistoch): Adjust the target_arch naming scheme to avoid |
| 846 # confusion. | 854 # confusion. |
| 847 # http://crbug.com/125329 | 855 # http://crbug.com/125329 |
| (...skipping 2388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3236 # settings in target dicts. SYMROOT is a special case, because many other | 3244 # settings in target dicts. SYMROOT is a special case, because many other |
| 3237 # Xcode variables depend on it, including variables such as | 3245 # Xcode variables depend on it, including variables such as |
| 3238 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3246 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3239 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3247 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3240 # files to appear (when present) in the UI as actual files and not red | 3248 # files to appear (when present) in the UI as actual files and not red |
| 3241 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3249 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3242 # and therefore SYMROOT, needs to be set at the project level. | 3250 # and therefore SYMROOT, needs to be set at the project level. |
| 3243 'SYMROOT': '<(DEPTH)/xcodebuild', | 3251 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3244 }, | 3252 }, |
| 3245 } | 3253 } |
| OLD | NEW |