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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 262543002: android: add ThumbnailCache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codec
Patch Set: renamed ThumbnailCacheCore to ThumbnailCache Created 6 years, 7 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 'browser/android/resource_id.h', 197 'browser/android/resource_id.h',
198 'browser/android/shortcut_helper.cc', 198 'browser/android/shortcut_helper.cc',
199 'browser/android/shortcut_helper.h', 199 'browser/android/shortcut_helper.h',
200 'browser/android/signin/account_management_screen_helper.cc', 200 'browser/android/signin/account_management_screen_helper.cc',
201 'browser/android/signin/account_management_screen_helper.h', 201 'browser/android/signin/account_management_screen_helper.h',
202 'browser/android/signin/signin_manager_android.cc', 202 'browser/android/signin/signin_manager_android.cc',
203 'browser/android/signin/signin_manager_android.h', 203 'browser/android/signin/signin_manager_android.h',
204 'browser/android/tab_android.cc', 204 'browser/android/tab_android.cc',
205 'browser/android/tab_android.h', 205 'browser/android/tab_android.h',
206 'browser/android/tab_load_status.h', 206 'browser/android/tab_load_status.h',
207 'browser/android/tab_thumbnail_provider.h',
208 'browser/android/thumbnail_cache.cc',
209 'browser/android/thumbnail_cache.h',
207 'browser/android/uma_bridge.cc', 210 'browser/android/uma_bridge.cc',
208 'browser/android/uma_bridge.h', 211 'browser/android/uma_bridge.h',
209 'browser/android/uma_utils.cc', 212 'browser/android/uma_utils.cc',
210 'browser/android/uma_utils.h', 213 'browser/android/uma_utils.h',
211 'browser/android/url_utilities.cc', 214 'browser/android/url_utilities.cc',
212 'browser/android/url_utilities.h', 215 'browser/android/url_utilities.h',
213 'browser/android/voice_search_tab_helper.cc', 216 'browser/android/voice_search_tab_helper.cc',
214 'browser/android/voice_search_tab_helper.h', 217 'browser/android/voice_search_tab_helper.h',
215 'browser/android/webapps/single_tab_mode_tab_helper.cc', 218 'browser/android/webapps/single_tab_mode_tab_helper.cc',
216 'browser/android/webapps/single_tab_mode_tab_helper.h', 219 'browser/android/webapps/single_tab_mode_tab_helper.h',
(...skipping 2918 matching lines...) Expand 10 before | Expand all | Expand 10 after
3135 'browser/net/spdyproxy/data_reduction_proxy_settings.cc', 3138 'browser/net/spdyproxy/data_reduction_proxy_settings.cc',
3136 'browser/net/spdyproxy/data_reduction_proxy_settings.h', 3139 'browser/net/spdyproxy/data_reduction_proxy_settings.h',
3137 'browser/net/spdyproxy/proxy_advisor.cc', 3140 'browser/net/spdyproxy/proxy_advisor.cc',
3138 'browser/net/spdyproxy/proxy_advisor.h', 3141 'browser/net/spdyproxy/proxy_advisor.h',
3139 ], 3142 ],
3140 }], 3143 }],
3141 ['OS=="android"', { 3144 ['OS=="android"', {
3142 'dependencies': [ 3145 'dependencies': [
3143 '../components/components.gyp:cdm_browser', 3146 '../components/components.gyp:cdm_browser',
3144 '../components/components.gyp:web_contents_delegate_android', 3147 '../components/components.gyp:web_contents_delegate_android',
3148 '../third_party/android_opengl/etc1/etc1.gyp:etc1',
3145 'chrome_browser_jni_headers', 3149 'chrome_browser_jni_headers',
3146 ], 3150 ],
3147 'dependencies!': [ 3151 'dependencies!': [
3148 '../components/components.gyp:storage_monitor', 3152 '../components/components.gyp:storage_monitor',
3149 '../components/components.gyp:usb_service', 3153 '../components/components.gyp:usb_service',
3150 '../components/components.gyp:web_modal', 3154 '../components/components.gyp:web_modal',
3151 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' , 3155 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' ,
3152 ], 3156 ],
3153 'sources': [ 3157 'sources': [
3154 'browser/sessions/in_memory_tab_restore_service.cc', 3158 'browser/sessions/in_memory_tab_restore_service.cc',
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
3707 'package_name': 'org/chromium/chrome/browser', 3711 'package_name': 'org/chromium/chrome/browser',
3708 'template_deps': ['browser/android/tab_load_status.h'], 3712 'template_deps': ['browser/android/tab_load_status.h'],
3709 }, 3713 },
3710 'includes': [ '../build/android/java_cpp_template.gypi' ], 3714 'includes': [ '../build/android/java_cpp_template.gypi' ],
3711 }, 3715 },
3712 ], 3716 ],
3713 }, 3717 },
3714 ], 3718 ],
3715 ], 3719 ],
3716 } 3720 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698