OLD | NEW |
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 2989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3000 'libraries': [ | 3000 'libraries': [ |
3001 '$(SDKROOT)/System/Library/Frameworks/CoreTelephony.framework', | 3001 '$(SDKROOT)/System/Library/Frameworks/CoreTelephony.framework', |
3002 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', | 3002 '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', |
3003 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework
', | 3003 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework
', |
3004 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 3004 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
3005 ], | 3005 ], |
3006 # CoreImage is iOS 5+, but iOS 4.3 is still supported. | 3006 # CoreImage is iOS 5+, but iOS 4.3 is still supported. |
3007 'xcode_settings': {'OTHER_LDFLAGS': ['-weak_framework CoreImage']}, | 3007 'xcode_settings': {'OTHER_LDFLAGS': ['-weak_framework CoreImage']}, |
3008 }, | 3008 }, |
3009 }], | 3009 }], |
| 3010 ['OS=="android"', { |
| 3011 'dependencies': [ |
| 3012 '../components/components_resources.gyp:components_resources', |
| 3013 ], |
| 3014 }], |
3010 ['OS=="win" or OS=="mac"', { | 3015 ['OS=="win" or OS=="mac"', { |
3011 'sources': [ | 3016 'sources': [ |
3012 '<@(chrome_browser_win_mac_sources)', | 3017 '<@(chrome_browser_win_mac_sources)', |
3013 ], | 3018 ], |
3014 }], | 3019 }], |
3015 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy==
1', { | 3020 ['OS!="android" and OS!="ios" and chromeos==0 and configuration_policy==
1', { |
3016 'sources': [ | 3021 'sources': [ |
3017 'browser/net/disk_cache_dir_policy_handler.cc', | 3022 'browser/net/disk_cache_dir_policy_handler.cc', |
3018 'browser/net/disk_cache_dir_policy_handler.h', | 3023 'browser/net/disk_cache_dir_policy_handler.h', |
3019 ], | 3024 ], |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3612 'variables': { | 3617 'variables': { |
3613 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3618 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
3614 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3619 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
3615 }, | 3620 }, |
3616 'includes': [ '../build/protoc.gypi' ] | 3621 'includes': [ '../build/protoc.gypi' ] |
3617 }, | 3622 }, |
3618 ], | 3623 ], |
3619 },], | 3624 },], |
3620 ], | 3625 ], |
3621 } | 3626 } |
OLD | NEW |