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

Side by Side Diff: build/common.gypi

Issue 695853002: Include Web Notifications on Android at build-time. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: attempt 2 Created 6 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
« no previous file with comments | « no previous file | chrome/browser/notifications/notification_ui_manager_android.h » ('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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 'cld_version%': 1, 761 'cld_version%': 1,
762 'enable_spellcheck%': 0, 762 'enable_spellcheck%': 0,
763 'enable_themes%': 0, 763 'enable_themes%': 0,
764 'remoting%': 0, 764 'remoting%': 0,
765 'arm_neon%': 0, 765 'arm_neon%': 0,
766 'arm_neon_optional%': 1, 766 'arm_neon_optional%': 1,
767 'native_discardable_memory%': 1, 767 'native_discardable_memory%': 1,
768 'native_memory_pressure_signals%': 1, 768 'native_memory_pressure_signals%': 1,
769 'enable_printing%': 2, 769 'enable_printing%': 2,
770 'enable_task_manager%':0, 770 'enable_task_manager%':0,
771 # Set to 1 once we have a notification system for Android.
772 # http://crbug.com/115320
773 'notifications%': 0,
774 'video_hole%': 1, 771 'video_hole%': 1,
775 }], 772 }],
776 773
777 # Android OS includes support for proprietary codecs regardless of 774 # Android OS includes support for proprietary codecs regardless of
778 # building Chromium or Google Chrome. We also ship Google Chrome and 775 # building Chromium or Google Chrome. We also ship Google Chrome and
779 # Chromecast with proprietary codecs. 776 # Chromecast with proprietary codecs.
780 ['OS=="android" or branding=="Chrome" or chromecast==1', { 777 ['OS=="android" or branding=="Chrome" or chromecast==1', {
781 'proprietary_codecs%': 1, 778 'proprietary_codecs%': 1,
782 }, { 779 }, {
783 'proprietary_codecs%': 0, 780 'proprietary_codecs%': 0,
(...skipping 5095 matching lines...) Expand 10 before | Expand all | Expand 10 after
5879 # settings in target dicts. SYMROOT is a special case, because many other 5876 # settings in target dicts. SYMROOT is a special case, because many other
5880 # Xcode variables depend on it, including variables such as 5877 # Xcode variables depend on it, including variables such as
5881 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5878 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5882 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5879 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5883 # files to appear (when present) in the UI as actual files and not red 5880 # files to appear (when present) in the UI as actual files and not red
5884 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5881 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5885 # and therefore SYMROOT, needs to be set at the project level. 5882 # and therefore SYMROOT, needs to be set at the project level.
5886 'SYMROOT': '<(DEPTH)/xcodebuild', 5883 'SYMROOT': '<(DEPTH)/xcodebuild',
5887 }, 5884 },
5888 } 5885 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/notifications/notification_ui_manager_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698