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

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: separate into multiple files Created 6 years, 6 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'browser/android/resource_id.h', 202 'browser/android/resource_id.h',
203 'browser/android/shortcut_helper.cc', 203 'browser/android/shortcut_helper.cc',
204 'browser/android/shortcut_helper.h', 204 'browser/android/shortcut_helper.h',
205 'browser/android/signin/account_management_screen_helper.cc', 205 'browser/android/signin/account_management_screen_helper.cc',
206 'browser/android/signin/account_management_screen_helper.h', 206 'browser/android/signin/account_management_screen_helper.h',
207 'browser/android/signin/signin_manager_android.cc', 207 'browser/android/signin/signin_manager_android.cc',
208 'browser/android/signin/signin_manager_android.h', 208 'browser/android/signin/signin_manager_android.h',
209 'browser/android/tab_android.cc', 209 'browser/android/tab_android.cc',
210 'browser/android/tab_android.h', 210 'browser/android/tab_android.h',
211 'browser/android/tab_load_status.h', 211 'browser/android/tab_load_status.h',
212 'browser/android/thumbnail/lru_expiring_cache.h',
213 'browser/android/thumbnail/thumbnail.h',
214 'browser/android/thumbnail/thumbnail_cache.cc',
215 'browser/android/thumbnail/thumbnail_cache.h',
216 'browser/android/thumbnail/thumbnail_impl.cc',
217 'browser/android/thumbnail/thumbnail_impl.h',
212 'browser/android/uma_bridge.cc', 218 'browser/android/uma_bridge.cc',
213 'browser/android/uma_bridge.h', 219 'browser/android/uma_bridge.h',
214 'browser/android/uma_utils.cc', 220 'browser/android/uma_utils.cc',
215 'browser/android/uma_utils.h', 221 'browser/android/uma_utils.h',
216 'browser/android/url_utilities.cc', 222 'browser/android/url_utilities.cc',
217 'browser/android/url_utilities.h', 223 'browser/android/url_utilities.h',
218 'browser/android/voice_search_tab_helper.cc', 224 'browser/android/voice_search_tab_helper.cc',
219 'browser/android/voice_search_tab_helper.h', 225 'browser/android/voice_search_tab_helper.h',
220 'browser/android/webapps/single_tab_mode_tab_helper.cc', 226 'browser/android/webapps/single_tab_mode_tab_helper.cc',
221 'browser/android/webapps/single_tab_mode_tab_helper.h', 227 'browser/android/webapps/single_tab_mode_tab_helper.h',
(...skipping 2955 matching lines...) Expand 10 before | Expand all | Expand 10 after
3177 'browser/net/spdyproxy/data_reduction_proxy_settings.cc', 3183 'browser/net/spdyproxy/data_reduction_proxy_settings.cc',
3178 'browser/net/spdyproxy/data_reduction_proxy_settings.h', 3184 'browser/net/spdyproxy/data_reduction_proxy_settings.h',
3179 'browser/net/spdyproxy/proxy_advisor.cc', 3185 'browser/net/spdyproxy/proxy_advisor.cc',
3180 'browser/net/spdyproxy/proxy_advisor.h', 3186 'browser/net/spdyproxy/proxy_advisor.h',
3181 ], 3187 ],
3182 }], 3188 }],
3183 ['OS=="android"', { 3189 ['OS=="android"', {
3184 'dependencies': [ 3190 'dependencies': [
3185 '../components/components.gyp:cdm_browser', 3191 '../components/components.gyp:cdm_browser',
3186 '../components/components.gyp:web_contents_delegate_android', 3192 '../components/components.gyp:web_contents_delegate_android',
3193 '../third_party/android_opengl/etc1/etc1.gyp:etc1',
3187 'chrome_browser_jni_headers', 3194 'chrome_browser_jni_headers',
3188 ], 3195 ],
3189 'dependencies!': [ 3196 'dependencies!': [
3190 '../components/components.gyp:feedback_component', 3197 '../components/components.gyp:feedback_component',
3191 '../components/components.gyp:storage_monitor', 3198 '../components/components.gyp:storage_monitor',
3192 '../components/components.gyp:usb_service', 3199 '../components/components.gyp:usb_service',
3193 '../components/components.gyp:web_modal', 3200 '../components/components.gyp:web_modal',
3194 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' , 3201 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' ,
3195 ], 3202 ],
3196 'sources': [ 3203 'sources': [
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
3779 'package_name': 'org/chromium/chrome/browser', 3786 'package_name': 'org/chromium/chrome/browser',
3780 'template_deps': ['browser/android/tab_load_status.h'], 3787 'template_deps': ['browser/android/tab_load_status.h'],
3781 }, 3788 },
3782 'includes': [ '../build/android/java_cpp_template.gypi' ], 3789 'includes': [ '../build/android/java_cpp_template.gypi' ],
3783 }, 3790 },
3784 ], 3791 ],
3785 }, 3792 },
3786 ], 3793 ],
3787 ], 3794 ],
3788 } 3795 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698