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

Side by Side Diff: build/common.gypi

Issue 25752005: Geolocation: delete GpsLocationProvider and third_party/gpsd/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 2 months 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
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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 628
629 # linux_use_gold_flags: whether to use build flags that rely on gold. 629 # linux_use_gold_flags: whether to use build flags that rely on gold.
630 # On by default for x64 Linux. Temporarily off for ChromeOS as 630 # On by default for x64 Linux. Temporarily off for ChromeOS as
631 # it failed on a buildbot. 631 # it failed on a buildbot.
632 ['OS=="linux" and target_arch=="x64" and chromeos==0', { 632 ['OS=="linux" and target_arch=="x64" and chromeos==0', {
633 'linux_use_gold_flags%': 1, 633 'linux_use_gold_flags%': 1,
634 }, { 634 }, {
635 'linux_use_gold_flags%': 0, 635 'linux_use_gold_flags%': 0,
636 }], 636 }],
637 637
638 ['chromeos==1', {
639 'linux_use_libgps%': 1,
640 }, { # chromeos==0
641 # Do not use libgps on desktop Linux by default,
642 # see http://crbug.com/103751.
643 'linux_use_libgps%': 0,
644 }],
645
646 ['OS=="android" or OS=="ios"', { 638 ['OS=="android" or OS=="ios"', {
647 'enable_captive_portal_detection%': 0, 639 'enable_captive_portal_detection%': 0,
648 }, { 640 }, {
649 'enable_captive_portal_detection%': 1, 641 'enable_captive_portal_detection%': 1,
650 }], 642 }],
651 643
652 # Enable Skia UI text drawing incrementally on different platforms. 644 # Enable Skia UI text drawing incrementally on different platforms.
653 # http://crbug.com/105550 645 # http://crbug.com/105550
654 # 646 #
655 # On Aura, this allows per-tile painting to be used in the browser 647 # On Aura, this allows per-tile painting to be used in the browser
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 'order_text_section%': '<(order_text_section)', 847 'order_text_section%': '<(order_text_section)',
856 'enable_extensions%': '<(enable_extensions)', 848 'enable_extensions%': '<(enable_extensions)',
857 'enable_plugin_installation%': '<(enable_plugin_installation)', 849 'enable_plugin_installation%': '<(enable_plugin_installation)',
858 'enable_plugins%': '<(enable_plugins)', 850 'enable_plugins%': '<(enable_plugins)',
859 'enable_session_service%': '<(enable_session_service)', 851 'enable_session_service%': '<(enable_session_service)',
860 'enable_themes%': '<(enable_themes)', 852 'enable_themes%': '<(enable_themes)',
861 'enable_autofill_dialog%': '<(enable_autofill_dialog)', 853 'enable_autofill_dialog%': '<(enable_autofill_dialog)',
862 'enable_background%': '<(enable_background)', 854 'enable_background%': '<(enable_background)',
863 'linux_use_gold_binary%': '<(linux_use_gold_binary)', 855 'linux_use_gold_binary%': '<(linux_use_gold_binary)',
864 'linux_use_gold_flags%': '<(linux_use_gold_flags)', 856 'linux_use_gold_flags%': '<(linux_use_gold_flags)',
865 'linux_use_libgps%': '<(linux_use_libgps)',
866 'use_canvas_skia%': '<(use_canvas_skia)', 857 'use_canvas_skia%': '<(use_canvas_skia)',
867 'test_isolation_mode%': '<(test_isolation_mode)', 858 'test_isolation_mode%': '<(test_isolation_mode)',
868 'test_isolation_outdir%': '<(test_isolation_outdir)', 859 'test_isolation_outdir%': '<(test_isolation_outdir)',
869 'test_isolation_fail_on_missing': '<(test_isolation_fail_on_missing)', 860 'test_isolation_fail_on_missing': '<(test_isolation_fail_on_missing)',
870 'enable_automation%': '<(enable_automation)', 861 'enable_automation%': '<(enable_automation)',
871 'enable_printing%': '<(enable_printing)', 862 'enable_printing%': '<(enable_printing)',
872 'enable_spellcheck%': '<(enable_spellcheck)', 863 'enable_spellcheck%': '<(enable_spellcheck)',
873 'enable_google_now%': '<(enable_google_now)', 864 'enable_google_now%': '<(enable_google_now)',
874 'cld_version%': '<(cld_version)', 865 'cld_version%': '<(cld_version)',
875 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 866 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
(...skipping 3866 matching lines...) Expand 10 before | Expand all | Expand 10 after
4742 # settings in target dicts. SYMROOT is a special case, because many other 4733 # settings in target dicts. SYMROOT is a special case, because many other
4743 # Xcode variables depend on it, including variables such as 4734 # Xcode variables depend on it, including variables such as
4744 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4735 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4745 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4736 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4746 # files to appear (when present) in the UI as actual files and not red 4737 # files to appear (when present) in the UI as actual files and not red
4747 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4738 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4748 # and therefore SYMROOT, needs to be set at the project level. 4739 # and therefore SYMROOT, needs to be set at the project level.
4749 'SYMROOT': '<(DEPTH)/xcodebuild', 4740 'SYMROOT': '<(DEPTH)/xcodebuild',
4750 }, 4741 },
4751 } 4742 }
OLDNEW
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | content/browser/geolocation/gps_location_provider_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698