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

Side by Side Diff: build/common.gypi

Issue 13269002: Allow the build to install apks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 'enable_google_now%': '<(enable_google_now)', 739 'enable_google_now%': '<(enable_google_now)',
740 'enable_language_detection%': '<(enable_language_detection)', 740 'enable_language_detection%': '<(enable_language_detection)',
741 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 741 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
742 'disable_ftp_support%': '<(disable_ftp_support)', 742 'disable_ftp_support%': '<(disable_ftp_support)',
743 'enable_task_manager%': '<(enable_task_manager)', 743 'enable_task_manager%': '<(enable_task_manager)',
744 'sas_dll_path%': '<(sas_dll_path)', 744 'sas_dll_path%': '<(sas_dll_path)',
745 'wix_path%': '<(wix_path)', 745 'wix_path%': '<(wix_path)',
746 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 746 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
747 'use_system_libjpeg%': '<(use_system_libjpeg)', 747 'use_system_libjpeg%': '<(use_system_libjpeg)',
748 'android_webview_build%': '<(android_webview_build)', 748 'android_webview_build%': '<(android_webview_build)',
749 'android_managed_install%': 0,
749 'google_tv%': '<(google_tv)', 750 'google_tv%': '<(google_tv)',
750 'enable_app_list%': '<(enable_app_list)', 751 'enable_app_list%': '<(enable_app_list)',
751 'enable_message_center%': '<(enable_message_center)', 752 'enable_message_center%': '<(enable_message_center)',
752 'use_default_render_theme%': '<(use_default_render_theme)', 753 'use_default_render_theme%': '<(use_default_render_theme)',
753 'enable_settings_app%': '<(enable_settings_app)', 754 'enable_settings_app%': '<(enable_settings_app)',
754 'use_official_google_api_keys%': '<(use_official_google_api_keys)', 755 'use_official_google_api_keys%': '<(use_official_google_api_keys)',
755 'google_api_key%': '<(google_api_key)', 756 'google_api_key%': '<(google_api_key)',
756 'google_default_client_id%': '<(google_default_client_id)', 757 'google_default_client_id%': '<(google_default_client_id)',
757 'google_default_client_secret%': '<(google_default_client_secret)', 758 'google_default_client_secret%': '<(google_default_client_secret)',
758 'enable_managed_users%': '<(enable_managed_users)', 759 'enable_managed_users%': '<(enable_managed_users)',
(...skipping 3414 matching lines...) Expand 10 before | Expand all | Expand 10 after
4173 # settings in target dicts. SYMROOT is a special case, because many other 4174 # settings in target dicts. SYMROOT is a special case, because many other
4174 # Xcode variables depend on it, including variables such as 4175 # Xcode variables depend on it, including variables such as
4175 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4176 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4176 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4177 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4177 # files to appear (when present) in the UI as actual files and not red 4178 # files to appear (when present) in the UI as actual files and not red
4178 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4179 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4179 # and therefore SYMROOT, needs to be set at the project level. 4180 # and therefore SYMROOT, needs to be set at the project level.
4180 'SYMROOT': '<(DEPTH)/xcodebuild', 4181 'SYMROOT': '<(DEPTH)/xcodebuild',
4181 }, 4182 },
4182 } 4183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698