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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 443193006: Show icons in Android web autofill dropdown (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix indent Created 6 years, 3 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 2974 matching lines...) Expand 10 before | Expand all | Expand 10 after
2985 'libraries': [ 2985 'libraries': [
2986 '$(SDKROOT)/System/Library/Frameworks/CoreTelephony.framework', 2986 '$(SDKROOT)/System/Library/Frameworks/CoreTelephony.framework',
2987 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', 2987 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
2988 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework ', 2988 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework ',
2989 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 2989 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
2990 ], 2990 ],
2991 # CoreImage is iOS 5+, but iOS 4.3 is still supported. 2991 # CoreImage is iOS 5+, but iOS 4.3 is still supported.
2992 'xcode_settings': {'OTHER_LDFLAGS': ['-weak_framework CoreImage']}, 2992 'xcode_settings': {'OTHER_LDFLAGS': ['-weak_framework CoreImage']},
2993 }, 2993 },
2994 }], 2994 }],
2995 ['OS=="android"', {
2996 'dependencies': [
2997 '../components/components_resources.gyp:components_resources',
2998 ],
2999 }],
2995 ['OS=="win" or OS=="mac"', { 3000 ['OS=="win" or OS=="mac"', {
2996 'sources': [ 3001 'sources': [
2997 '<@(chrome_browser_win_mac_sources)', 3002 '<@(chrome_browser_win_mac_sources)',
2998 ], 3003 ],
2999 }], 3004 }],
3000 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy== 1', { 3005 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy== 1', {
3001 'sources': [ 3006 'sources': [
3002 'browser/net/disk_cache_dir_policy_handler.cc', 3007 'browser/net/disk_cache_dir_policy_handler.cc',
3003 'browser/net/disk_cache_dir_policy_handler.h', 3008 'browser/net/disk_cache_dir_policy_handler.h',
3004 ], 3009 ],
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
3577 'variables': { 3582 'variables': {
3578 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3583 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3579 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3584 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3580 }, 3585 },
3581 'includes': [ '../build/protoc.gypi' ] 3586 'includes': [ '../build/protoc.gypi' ]
3582 }, 3587 },
3583 ], 3588 ],
3584 },], 3589 },],
3585 ], 3590 ],
3586 } 3591 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698