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

Side by Side Diff: build/common.gypi

Issue 12282004: Added personal_data_manager android implementation for auto-populating auto-fill on android builds … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Feature flag-guard 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 | Annotate | Revision Log
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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 # Use the provided profiled order file to link Chrome image with it. 294 # Use the provided profiled order file to link Chrome image with it.
295 # This makes Chrome faster by better using CPU cache when executing code. 295 # This makes Chrome faster by better using CPU cache when executing code.
296 # This is known as PGO (profile guided optimization). 296 # This is known as PGO (profile guided optimization).
297 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-e ffort 297 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-e ffort
298 'order_text_section%' : "", 298 'order_text_section%' : "",
299 299
300 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared 300 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared
301 # libraries on linux x86-64 and arm, plus ASLR. 301 # libraries on linux x86-64 and arm, plus ASLR.
302 'linux_fpic%': 1, 302 'linux_fpic%': 1,
303 303
304 # Whether a default android autofill profile should be constructed
305 # from the user's contact profile.
306 'enable_android_autofill_autopopulator%': 0,
307
304 # Whether one-click signin is enabled or not. 308 # Whether one-click signin is enabled or not.
305 'enable_one_click_signin%': 0, 309 'enable_one_click_signin%': 0,
306 310
307 # Enable Chrome browser extensions 311 # Enable Chrome browser extensions
308 'enable_extensions%': 1, 312 'enable_extensions%': 1,
309 313
310 # Enable browser automation. 314 # Enable browser automation.
311 'enable_automation%': 1, 315 'enable_automation%': 1,
312 316
313 # Enable Google Now. 317 # Enable Google Now.
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
688 'python_ver%': '<(python_ver)', 692 'python_ver%': '<(python_ver)',
689 'armv7%': '<(armv7)', 693 'armv7%': '<(armv7)',
690 'arm_neon%': '<(arm_neon)', 694 'arm_neon%': '<(arm_neon)',
691 'sysroot%': '<(sysroot)', 695 'sysroot%': '<(sysroot)',
692 'system_libdir%': '<(system_libdir)', 696 'system_libdir%': '<(system_libdir)',
693 'component%': '<(component)', 697 'component%': '<(component)',
694 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)', 698 'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)',
695 'use_third_party_translations%': '<(use_third_party_translations)', 699 'use_third_party_translations%': '<(use_third_party_translations)',
696 'remoting%': '<(remoting)', 700 'remoting%': '<(remoting)',
697 'enable_one_click_signin%': '<(enable_one_click_signin)', 701 'enable_one_click_signin%': '<(enable_one_click_signin)',
702 'enable_android_autofill_autopopulator%': '<(enable_android_autofill_autopop ulator)',
698 'enable_webrtc%': '<(enable_webrtc)', 703 'enable_webrtc%': '<(enable_webrtc)',
699 'chromium_win_pch%': '<(chromium_win_pch)', 704 'chromium_win_pch%': '<(chromium_win_pch)',
700 'configuration_policy%': '<(configuration_policy)', 705 'configuration_policy%': '<(configuration_policy)',
701 'safe_browsing%': '<(safe_browsing)', 706 'safe_browsing%': '<(safe_browsing)',
702 'input_speech%': '<(input_speech)', 707 'input_speech%': '<(input_speech)',
703 'notifications%': '<(notifications)', 708 'notifications%': '<(notifications)',
704 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', 709 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
705 'mac_want_real_dsym%': '<(mac_want_real_dsym)', 710 'mac_want_real_dsym%': '<(mac_want_real_dsym)',
706 'asan%': '<(asan)', 711 'asan%': '<(asan)',
707 'msan%': '<(msan)', 712 'msan%': '<(msan)',
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after
1767 ['OS=="linux" and glibcxx_debug==1', { 1772 ['OS=="linux" and glibcxx_debug==1', {
1768 'defines': ['_GLIBCXX_DEBUG=1',], 1773 'defines': ['_GLIBCXX_DEBUG=1',],
1769 'cflags_cc+': ['-g'], 1774 'cflags_cc+': ['-g'],
1770 }], 1775 }],
1771 ['remoting==1', { 1776 ['remoting==1', {
1772 'defines': ['ENABLE_REMOTING=1'], 1777 'defines': ['ENABLE_REMOTING=1'],
1773 }], 1778 }],
1774 ['enable_webrtc==1', { 1779 ['enable_webrtc==1', {
1775 'defines': ['ENABLE_WEBRTC=1'], 1780 'defines': ['ENABLE_WEBRTC=1'],
1776 }], 1781 }],
1782 ['enable_android_autofill_autopopulator==1', {
1783 'defines': ['ENABLE_ANDROID_AUTOFILL_AUTOPOPULATOR=1'],
1784 }],
1777 ['proprietary_codecs==1', { 1785 ['proprietary_codecs==1', {
1778 'defines': ['USE_PROPRIETARY_CODECS'], 1786 'defines': ['USE_PROPRIETARY_CODECS'],
1779 }], 1787 }],
1780 ['enable_viewport==1', { 1788 ['enable_viewport==1', {
1781 'defines': ['ENABLE_VIEWPORT'], 1789 'defines': ['ENABLE_VIEWPORT'],
1782 }], 1790 }],
1783 ['configuration_policy==1', { 1791 ['configuration_policy==1', {
1784 'defines': ['ENABLE_CONFIGURATION_POLICY'], 1792 'defines': ['ENABLE_CONFIGURATION_POLICY'],
1785 }], 1793 }],
1786 ['input_speech==1', { 1794 ['input_speech==1', {
(...skipping 2372 matching lines...) Expand 10 before | Expand all | Expand 10 after
4159 # settings in target dicts. SYMROOT is a special case, because many other 4167 # settings in target dicts. SYMROOT is a special case, because many other
4160 # Xcode variables depend on it, including variables such as 4168 # Xcode variables depend on it, including variables such as
4161 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4169 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4162 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4170 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4163 # files to appear (when present) in the UI as actual files and not red 4171 # files to appear (when present) in the UI as actual files and not red
4164 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4172 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4165 # and therefore SYMROOT, needs to be set at the project level. 4173 # and therefore SYMROOT, needs to be set at the project level.
4166 'SYMROOT': '<(DEPTH)/xcodebuild', 4174 'SYMROOT': '<(DEPTH)/xcodebuild',
4167 }, 4175 },
4168 } 4176 }
OLDNEW
« no previous file with comments | « no previous file | chrome/android/testshell/java/AndroidManifest.xml » ('j') | chrome/android/testshell/java/AndroidManifest.xml » ('J')

Powered by Google App Engine
This is Rietveld 408576698