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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 10880064: Make extension commands grant the activeTab permission. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 8 years, 2 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 | Annotate | Revision Log
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 '../webkit/support/webkit_support.gyp:webkit_base', 53 '../webkit/support/webkit_support.gyp:webkit_base',
54 '../webkit/support/webkit_support.gyp:webkit_resources', 54 '../webkit/support/webkit_support.gyp:webkit_resources',
55 ], 55 ],
56 'include_dirs': [ 56 'include_dirs': [
57 '..', 57 '..',
58 '<(INTERMEDIATE_DIR)', 58 '<(INTERMEDIATE_DIR)',
59 ], 59 ],
60 'sources': [ 60 'sources': [
61 # All .cc, .h, .m, and .mm files under browser/extensions except for 61 # All .cc, .h, .m, and .mm files under browser/extensions except for
62 # tests and mocks. 62 # tests and mocks.
63 'browser/extensions/active_tab_permission_manager.cc', 63 'browser/extensions/active_tab_permission_granter.cc',
64 'browser/extensions/active_tab_permission_manager.h', 64 'browser/extensions/active_tab_permission_granter.h',
65 'browser/extensions/activity_log.cc', 65 'browser/extensions/activity_log.cc',
66 'browser/extensions/activity_log.h', 66 'browser/extensions/activity_log.h',
67 'browser/extensions/admin_policy.cc', 67 'browser/extensions/admin_policy.cc',
68 'browser/extensions/admin_policy.h', 68 'browser/extensions/admin_policy.h',
69 'browser/extensions/api/api_function.cc', 69 'browser/extensions/api/api_function.cc',
70 'browser/extensions/api/api_function.h', 70 'browser/extensions/api/api_function.h',
71 'browser/extensions/api/api_resource.cc', 71 'browser/extensions/api/api_resource.cc',
72 'browser/extensions/api/api_resource.h', 72 'browser/extensions/api/api_resource.h',
73 'browser/extensions/api/api_resource_manager.h', 73 'browser/extensions/api/api_resource_manager.h',
74 'browser/extensions/api/api_resource_event_notifier.cc', 74 'browser/extensions/api/api_resource_event_notifier.cc',
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 'browser/extensions/app_host/update.cc', 846 'browser/extensions/app_host/update.cc',
847 'browser/extensions/app_host/update.h', 847 'browser/extensions/app_host/update.h',
848 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc', 848 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc',
849 ], 849 ],
850 }, 850 },
851 ], 851 ],
852 }, ], # 'OS=="win"' 852 }, ], # 'OS=="win"'
853 ], # 'conditions' 853 ], # 'conditions'
854 } 854 }
855 855
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698