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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 10824232: Add systeminfo.storage API implementation skeleton (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: chromium-style virtual dtor not public for ref-counted class 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 'browser/extensions/api/socket/socket.h', 227 'browser/extensions/api/socket/socket.h',
228 'browser/extensions/api/socket/socket_api.cc', 228 'browser/extensions/api/socket/socket_api.cc',
229 'browser/extensions/api/socket/socket_api.h', 229 'browser/extensions/api/socket/socket_api.h',
230 'browser/extensions/api/socket/tcp_socket.cc', 230 'browser/extensions/api/socket/tcp_socket.cc',
231 'browser/extensions/api/socket/tcp_socket.h', 231 'browser/extensions/api/socket/tcp_socket.h',
232 'browser/extensions/api/socket/udp_socket.cc', 232 'browser/extensions/api/socket/udp_socket.cc',
233 'browser/extensions/api/socket/udp_socket.h', 233 'browser/extensions/api/socket/udp_socket.h',
234 'browser/extensions/api/system_info_cpu/cpu_info_provider.h', 234 'browser/extensions/api/system_info_cpu/cpu_info_provider.h',
235 'browser/extensions/api/system_info_cpu/system_info_cpu_api.cc', 235 'browser/extensions/api/system_info_cpu/system_info_cpu_api.cc',
236 'browser/extensions/api/system_info_cpu/system_info_cpu_api.h', 236 'browser/extensions/api/system_info_cpu/system_info_cpu_api.h',
237 'browser/extensions/api/system_info_storage/system_info_storage_api.cc',
238 'browser/extensions/api/system_info_storage/system_info_storage_api.h',
239 'browser/extensions/api/system_info_storage/storage_info_provider.cc',
240 'browser/extensions/api/system_info_storage/storage_info_provider.h',
241 'browser/extensions/api/system_info_storage/storage_info_provider_win.cc ',
237 'browser/extensions/api/tabs/execute_code_in_tab_function.cc', 242 'browser/extensions/api/tabs/execute_code_in_tab_function.cc',
238 'browser/extensions/api/tabs/execute_code_in_tab_function.h', 243 'browser/extensions/api/tabs/execute_code_in_tab_function.h',
239 'browser/extensions/api/tabs/tabs.cc', 244 'browser/extensions/api/tabs/tabs.cc',
240 'browser/extensions/api/tabs/tabs.h', 245 'browser/extensions/api/tabs/tabs.h',
241 'browser/extensions/api/tabs/tabs_constants.cc', 246 'browser/extensions/api/tabs/tabs_constants.cc',
242 'browser/extensions/api/tabs/tabs_constants.h', 247 'browser/extensions/api/tabs/tabs_constants.h',
243 'browser/extensions/api/terminal/terminal_extension_helper.cc', 248 'browser/extensions/api/terminal/terminal_extension_helper.cc',
244 'browser/extensions/api/terminal/terminal_extension_helper.h', 249 'browser/extensions/api/terminal/terminal_extension_helper.h',
245 'browser/extensions/api/terminal/terminal_private_api.cc', 250 'browser/extensions/api/terminal/terminal_private_api.cc',
246 'browser/extensions/api/terminal/terminal_private_api.h', 251 'browser/extensions/api/terminal/terminal_private_api.h',
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
681 'conditions': [ 686 'conditions': [
682 ['OS=="linux" and toolkit_views==1',{ 687 ['OS=="linux" and toolkit_views==1',{
683 'include_dirs': [ 688 'include_dirs': [
684 '<(INTERMEDIATE_DIR)', 689 '<(INTERMEDIATE_DIR)',
685 '<(INTERMEDIATE_DIR)/chrome', 690 '<(INTERMEDIATE_DIR)/chrome',
686 ], 691 ],
687 'sources/': [ 692 'sources/': [
688 ['include', '^browser/extensions/'], 693 ['include', '^browser/extensions/'],
689 694
690 # Other excluded stuff. 695 # Other excluded stuff.
696 ['exclude', '^browser/extensions/api/system_info_storage/storage _info_provider_win.cc'],
691 ['exclude', '^browser/extensions/browser_action_test_util_gtk.cc '], 697 ['exclude', '^browser/extensions/browser_action_test_util_gtk.cc '],
692 ['exclude', '^browser/extensions/extension_host_mac.h'], 698 ['exclude', '^browser/extensions/extension_host_mac.h'],
693 ['exclude', '^browser/extensions/extension_host_mac.mm'], 699 ['exclude', '^browser/extensions/extension_host_mac.mm'],
694 ['exclude', '^browser/extensions/external_registry_loader_win.cc '], 700 ['exclude', '^browser/extensions/external_registry_loader_win.cc '],
695 ['exclude', '^browser/extensions/external_registry_loader_win.h' ], 701 ['exclude', '^browser/extensions/external_registry_loader_win.h' ],
696 ], 702 ],
697 }], 703 }],
698 # Exclude these toolkit_views specific files again. 704 # Exclude these toolkit_views specific files again.
699 # (Required because of the '^browser/extensions/' include above) 705 # (Required because of the '^browser/extensions/' include above)
700 ['toolkit_views==0', { 706 ['toolkit_views==0', {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 'sources': [ 767 'sources': [
762 'browser/extensions/app_host.rc', 768 'browser/extensions/app_host.rc',
763 'browser/extensions/app_host_stub_main.cc', 769 'browser/extensions/app_host_stub_main.cc',
764 ], 770 ],
765 }, 771 },
766 ], 772 ],
767 }, ], # 'OS=="win"' 773 }, ], # 'OS=="win"'
768 ], # 'conditions' 774 ], # 'conditions'
769 } 775 }
770 776
OLDNEW
« no previous file with comments | « chrome/browser/extensions/api/system_info_storage/system_info_storage_apitest.cc ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698