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

Side by Side Diff: build/common.gypi

Issue 9447034: Android: Guard off desktop notifications (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixing rebase Created 8 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 'linux_breakpad%': 0, 737 'linux_breakpad%': 0,
738 738
739 # Always uses openssl. 739 # Always uses openssl.
740 'use_openssl%': 1, 740 'use_openssl%': 1,
741 741
742 'proprietary_codecs%': '<(proprietary_codecs)', 742 'proprietary_codecs%': '<(proprietary_codecs)',
743 'safe_browsing%': 0, 743 'safe_browsing%': 0,
744 'configuration_policy%': 0, 744 'configuration_policy%': 0,
745 'input_speech%': 0, 745 'input_speech%': 0,
746 'java_bridge%': 1, 746 'java_bridge%': 1,
747
748 # Set to 1 once we have a notification system for Android.
749 # http://crbug.com/115320
747 'notifications%': 0, 750 'notifications%': 0,
748 751
749 # Builds the gtest targets as a shared_library. 752 # Builds the gtest targets as a shared_library.
750 # TODO(michaelbai): Use the fixed value 'shared_library' once it 753 # TODO(michaelbai): Use the fixed value 'shared_library' once it
751 # is fully supported. 754 # is fully supported.
752 'gtest_target_type%': '<(gtest_target_type)', 755 'gtest_target_type%': '<(gtest_target_type)',
753 756
754 # Uses system APIs for decoding audio and video. 757 # Uses system APIs for decoding audio and video.
755 'use_libffmpeg%': '0', 758 'use_libffmpeg%': '0',
756 759
(...skipping 2051 matching lines...) Expand 10 before | Expand all | Expand 10 after
2808 # settings in target dicts. SYMROOT is a special case, because many other 2811 # settings in target dicts. SYMROOT is a special case, because many other
2809 # Xcode variables depend on it, including variables such as 2812 # Xcode variables depend on it, including variables such as
2810 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2813 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2811 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2814 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2812 # files to appear (when present) in the UI as actual files and not red 2815 # files to appear (when present) in the UI as actual files and not red
2813 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2816 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2814 # and therefore SYMROOT, needs to be set at the project level. 2817 # and therefore SYMROOT, needs to be set at the project level.
2815 'SYMROOT': '<(DEPTH)/xcodebuild', 2818 'SYMROOT': '<(DEPTH)/xcodebuild',
2816 }, 2819 },
2817 } 2820 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698