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

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: addressed comments Created 6 years, 5 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'browser/android/resource_id.h', 92 'browser/android/resource_id.h',
93 'browser/android/shortcut_helper.cc', 93 'browser/android/shortcut_helper.cc',
94 'browser/android/shortcut_helper.h', 94 'browser/android/shortcut_helper.h',
95 'browser/android/signin/account_management_screen_helper.cc', 95 'browser/android/signin/account_management_screen_helper.cc',
96 'browser/android/signin/account_management_screen_helper.h', 96 'browser/android/signin/account_management_screen_helper.h',
97 'browser/android/signin/signin_manager_android.cc', 97 'browser/android/signin/signin_manager_android.cc',
98 'browser/android/signin/signin_manager_android.h', 98 'browser/android/signin/signin_manager_android.h',
99 'browser/android/tab_android.cc', 99 'browser/android/tab_android.cc',
100 'browser/android/tab_android.h', 100 'browser/android/tab_android.h',
101 'browser/android/tab_load_status.h', 101 'browser/android/tab_load_status.h',
102 'browser/android/thumbnail/thumbnail.cc',
103 'browser/android/thumbnail/thumbnail.h',
104 'browser/android/thumbnail/thumbnail_cache.cc',
105 'browser/android/thumbnail/thumbnail_cache.h',
102 'browser/android/uma_bridge.cc', 106 'browser/android/uma_bridge.cc',
103 'browser/android/uma_bridge.h', 107 'browser/android/uma_bridge.h',
104 'browser/android/uma_utils.cc', 108 'browser/android/uma_utils.cc',
105 'browser/android/uma_utils.h', 109 'browser/android/uma_utils.h',
106 'browser/android/url_utilities.cc', 110 'browser/android/url_utilities.cc',
107 'browser/android/url_utilities.h', 111 'browser/android/url_utilities.h',
108 'browser/android/voice_search_tab_helper.cc', 112 'browser/android/voice_search_tab_helper.cc',
109 'browser/android/voice_search_tab_helper.h', 113 'browser/android/voice_search_tab_helper.h',
110 'browser/android/webapps/single_tab_mode_tab_helper.cc', 114 'browser/android/webapps/single_tab_mode_tab_helper.cc',
111 'browser/android/webapps/single_tab_mode_tab_helper.h', 115 'browser/android/webapps/single_tab_mode_tab_helper.h',
(...skipping 3123 matching lines...) Expand 10 before | Expand all | Expand 10 after
3235 }], 3239 }],
3236 ['OS=="android" or OS=="ios"', { 3240 ['OS=="android" or OS=="ios"', {
3237 'sources': [ '<@(chrome_browser_mobile_sources)' ], 3241 'sources': [ '<@(chrome_browser_mobile_sources)' ],
3238 }, { # OS!="android" and OS!="ios" 3242 }, { # OS!="android" and OS!="ios"
3239 'sources': [ '<@(chrome_browser_non_mobile_sources)' ], 3243 'sources': [ '<@(chrome_browser_non_mobile_sources)' ],
3240 }], 3244 }],
3241 ['OS=="android"', { 3245 ['OS=="android"', {
3242 'dependencies': [ 3246 'dependencies': [
3243 '../components/components.gyp:cdm_browser', 3247 '../components/components.gyp:cdm_browser',
3244 '../components/components.gyp:web_contents_delegate_android', 3248 '../components/components.gyp:web_contents_delegate_android',
3249 '../third_party/android_opengl/etc1/etc1.gyp:etc1',
3245 'chrome_browser_jni_headers', 3250 'chrome_browser_jni_headers',
3246 ], 3251 ],
3247 'dependencies!': [ 3252 'dependencies!': [
3248 '../components/components.gyp:feedback_component', 3253 '../components/components.gyp:feedback_component',
3249 '../components/components.gyp:storage_monitor', 3254 '../components/components.gyp:storage_monitor',
3250 '../components/components.gyp:usb_service', 3255 '../components/components.gyp:usb_service',
3251 '../components/components.gyp:web_modal', 3256 '../components/components.gyp:web_modal',
3252 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' , 3257 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' ,
3253 ], 3258 ],
3254 'sources': [ '<@(chrome_browser_android_sources)' ], 3259 'sources': [ '<@(chrome_browser_android_sources)' ],
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
3586 'package_name': 'org/chromium/chrome/browser', 3591 'package_name': 'org/chromium/chrome/browser',
3587 'template_deps': ['browser/android/tab_load_status.h'], 3592 'template_deps': ['browser/android/tab_load_status.h'],
3588 }, 3593 },
3589 'includes': [ '../build/android/java_cpp_template.gypi' ], 3594 'includes': [ '../build/android/java_cpp_template.gypi' ],
3590 }, 3595 },
3591 ], 3596 ],
3592 }, 3597 },
3593 ], 3598 ],
3594 ], 3599 ],
3595 } 3600 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698