Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1181)

Side by Side Diff: build/common.gypi

Issue 59323007: Make dbus-based wifi data provider optional on linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reorder gyp variable Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/browser/geolocation/empty_wifi_data_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 496
497 # Flags to use pango and glib on non-Mac POSIX platforms. 497 # Flags to use pango and glib on non-Mac POSIX platforms.
498 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android"', { 498 ['OS=="win" or OS=="mac" or OS=="ios" or OS=="android"', {
499 'use_glib%': 0, 499 'use_glib%': 0,
500 'use_pango%': 0, 500 'use_pango%': 0,
501 }, { 501 }, {
502 'use_glib%': 1, 502 'use_glib%': 1,
503 'use_pango%': 1, 503 'use_pango%': 1,
504 }], 504 }],
505 505
506 # DBus usage.
507 ['OS=="linux"', {
508 'use_dbus%': 1,
509 }, {
510 'use_dbus%': 0,
511 }],
512
506 # We always use skia text rendering in Aura on Windows, since GDI 513 # We always use skia text rendering in Aura on Windows, since GDI
507 # doesn't agree with our BackingStore. 514 # doesn't agree with our BackingStore.
508 # TODO(beng): remove once skia text rendering is on by default. 515 # TODO(beng): remove once skia text rendering is on by default.
509 ['use_aura==1 and OS=="win"', { 516 ['use_aura==1 and OS=="win"', {
510 'enable_skia_text%': 1, 517 'enable_skia_text%': 1,
511 }], 518 }],
512 519
513 # A flag to enable or disable our compile-time dependency 520 # A flag to enable or disable our compile-time dependency
514 # on gnome-keyring. If that dependency is disabled, no gnome-keyring 521 # on gnome-keyring. If that dependency is disabled, no gnome-keyring
515 # support will be available. This option is useful 522 # support will be available. This option is useful
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 'host_arch%': '<(host_arch)', 813 'host_arch%': '<(host_arch)',
807 'toolkit_views%': '<(toolkit_views)', 814 'toolkit_views%': '<(toolkit_views)',
808 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)', 815 'ui_compositor_image_transport%': '<(ui_compositor_image_transport)',
809 'use_aura%': '<(use_aura)', 816 'use_aura%': '<(use_aura)',
810 'use_ash%': '<(use_ash)', 817 'use_ash%': '<(use_ash)',
811 'use_cras%': '<(use_cras)', 818 'use_cras%': '<(use_cras)',
812 'use_openssl%': '<(use_openssl)', 819 'use_openssl%': '<(use_openssl)',
813 'use_nss%': '<(use_nss)', 820 'use_nss%': '<(use_nss)',
814 'os_bsd%': '<(os_bsd)', 821 'os_bsd%': '<(os_bsd)',
815 'os_posix%': '<(os_posix)', 822 'os_posix%': '<(os_posix)',
823 'use_dbus%': '<(use_dbus)',
816 'use_glib%': '<(use_glib)', 824 'use_glib%': '<(use_glib)',
817 'use_pango%': '<(use_pango)', 825 'use_pango%': '<(use_pango)',
818 'use_ozone%': '<(use_ozone)', 826 'use_ozone%': '<(use_ozone)',
819 'use_ozone_evdev%': '<(use_ozone_evdev)', 827 'use_ozone_evdev%': '<(use_ozone_evdev)',
820 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)', 828 'toolkit_uses_gtk%': '<(toolkit_uses_gtk)',
821 'desktop_linux%': '<(desktop_linux)', 829 'desktop_linux%': '<(desktop_linux)',
822 'use_x11%': '<(use_x11)', 830 'use_x11%': '<(use_x11)',
823 'use_gnome_keyring%': '<(use_gnome_keyring)', 831 'use_gnome_keyring%': '<(use_gnome_keyring)',
824 'linux_fpic%': '<(linux_fpic)', 832 'linux_fpic%': '<(linux_fpic)',
825 'chromeos%': '<(chromeos)', 833 'chromeos%': '<(chromeos)',
(...skipping 3911 matching lines...) Expand 10 before | Expand all | Expand 10 after
4737 # settings in target dicts. SYMROOT is a special case, because many other 4745 # settings in target dicts. SYMROOT is a special case, because many other
4738 # Xcode variables depend on it, including variables such as 4746 # Xcode variables depend on it, including variables such as
4739 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4747 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4740 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4748 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4741 # files to appear (when present) in the UI as actual files and not red 4749 # files to appear (when present) in the UI as actual files and not red
4742 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4750 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4743 # and therefore SYMROOT, needs to be set at the project level. 4751 # and therefore SYMROOT, needs to be set at the project level.
4744 'SYMROOT': '<(DEPTH)/xcodebuild', 4752 'SYMROOT': '<(DEPTH)/xcodebuild',
4745 }, 4753 },
4746 } 4754 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/geolocation/empty_wifi_data_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698