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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 10876041: Polish the SystemInfoProvider template code and refactor StorageInfoProvider based on it (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Use string16 instead of wstring to avoid Presubmit warning Created 8 years, 4 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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_extensions', 8 'target_name': 'browser_extensions',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'browser/extensions/api/socket/udp_socket.h', 240 'browser/extensions/api/socket/udp_socket.h',
241 'browser/extensions/api/system_info_cpu/cpu_info_provider_mac.cc', 241 'browser/extensions/api/system_info_cpu/cpu_info_provider_mac.cc',
242 'browser/extensions/api/system_info_cpu/cpu_info_provider_linux.cc', 242 'browser/extensions/api/system_info_cpu/cpu_info_provider_linux.cc',
243 'browser/extensions/api/system_info_cpu/cpu_info_provider_win.cc', 243 'browser/extensions/api/system_info_cpu/cpu_info_provider_win.cc',
244 'browser/extensions/api/system_info_cpu/system_info_cpu_api.cc', 244 'browser/extensions/api/system_info_cpu/system_info_cpu_api.cc',
245 'browser/extensions/api/system_info_cpu/system_info_cpu_api.h', 245 'browser/extensions/api/system_info_cpu/system_info_cpu_api.h',
246 'browser/extensions/api/system_info_storage/system_info_storage_api.cc', 246 'browser/extensions/api/system_info_storage/system_info_storage_api.cc',
247 'browser/extensions/api/system_info_storage/system_info_storage_api.h', 247 'browser/extensions/api/system_info_storage/system_info_storage_api.h',
248 'browser/extensions/api/system_info_storage/storage_info_provider.cc', 248 'browser/extensions/api/system_info_storage/storage_info_provider.cc',
249 'browser/extensions/api/system_info_storage/storage_info_provider.h', 249 'browser/extensions/api/system_info_storage/storage_info_provider.h',
250 'browser/extensions/api/system_info_storage/storage_info_provider_linux. cc',
251 'browser/extensions/api/system_info_storage/storage_info_provider_mac.cc ',
250 'browser/extensions/api/system_info_storage/storage_info_provider_win.cc ', 252 'browser/extensions/api/system_info_storage/storage_info_provider_win.cc ',
251 'browser/extensions/api/tabs/execute_code_in_tab_function.cc', 253 'browser/extensions/api/tabs/execute_code_in_tab_function.cc',
252 'browser/extensions/api/tabs/execute_code_in_tab_function.h', 254 'browser/extensions/api/tabs/execute_code_in_tab_function.h',
253 'browser/extensions/api/tabs/tabs.cc', 255 'browser/extensions/api/tabs/tabs.cc',
254 'browser/extensions/api/tabs/tabs.h', 256 'browser/extensions/api/tabs/tabs.h',
255 'browser/extensions/api/tabs/tabs_constants.cc', 257 'browser/extensions/api/tabs/tabs_constants.cc',
256 'browser/extensions/api/tabs/tabs_constants.h', 258 'browser/extensions/api/tabs/tabs_constants.h',
257 'browser/extensions/api/terminal/terminal_extension_helper.cc', 259 'browser/extensions/api/terminal/terminal_extension_helper.cc',
258 'browser/extensions/api/terminal/terminal_extension_helper.h', 260 'browser/extensions/api/terminal/terminal_extension_helper.h',
259 'browser/extensions/api/terminal/terminal_private_api.cc', 261 'browser/extensions/api/terminal/terminal_private_api.cc',
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
777 'sources': [ 779 'sources': [
778 'browser/extensions/app_host.rc', 780 'browser/extensions/app_host.rc',
779 'browser/extensions/app_host_stub_main.cc', 781 'browser/extensions/app_host_stub_main.cc',
780 ], 782 ],
781 }, 783 },
782 ], 784 ],
783 }, ], # 'OS=="win"' 785 }, ], # 'OS=="win"'
784 ], # 'conditions' 786 ], # 'conditions'
785 } 787 }
786 788
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698