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

Side by Side Diff: extensions/extensions.gyp

Issue 67253003: Reland: Move ExtensionProcessManager to src/extensions, part 4 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase process_manager Created 7 years, 1 month 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
« no previous file with comments | « extensions/browser/process_manager.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'common/extension_api.cc', 123 'common/extension_api.cc',
124 ], 124 ],
125 }], 125 }],
126 ], 126 ],
127 }, 127 },
128 { 128 {
129 'target_name': 'extensions_browser', 129 'target_name': 'extensions_browser',
130 'type': 'static_library', 130 'type': 'static_library',
131 'dependencies': [ 131 'dependencies': [
132 'extensions_common', 132 'extensions_common',
133 # TODO(jamescook|derat): Pull strings into extensions module.
133 '../chrome/chrome_resources.gyp:chrome_strings', 134 '../chrome/chrome_resources.gyp:chrome_strings',
135 '../chrome/common/extensions/api/api.gyp:api',
134 '../content/content.gyp:content_browser', 136 '../content/content.gyp:content_browser',
135 '../skia/skia.gyp:skia', 137 '../skia/skia.gyp:skia',
136 ], 138 ],
137 'include_dirs': [ 139 'include_dirs': [
138 '..', 140 '..',
139 '<(INTERMEDIATE_DIR)', 141 '<(INTERMEDIATE_DIR)',
142 # Needed to access generated API headers.
143 '<(SHARED_INTERMEDIATE_DIR)',
144 # Needed for grit.
140 '<(SHARED_INTERMEDIATE_DIR)/chrome', 145 '<(SHARED_INTERMEDIATE_DIR)/chrome',
141 ], 146 ],
142 'sources': [ 147 'sources': [
143 'browser/admin_policy.cc', 148 'browser/admin_policy.cc',
144 'browser/admin_policy.h', 149 'browser/admin_policy.h',
145 'browser/extension_prefs_scope.h', 150 'browser/extension_prefs_scope.h',
146 'browser/extension_error.cc', 151 'browser/extension_error.cc',
147 'browser/extension_error.h', 152 'browser/extension_error.h',
148 'browser/extensions_browser_client.cc', 153 'browser/extensions_browser_client.cc',
149 'browser/extensions_browser_client.h', 154 'browser/extensions_browser_client.h',
150 'browser/info_map.cc', 155 'browser/info_map.cc',
151 'browser/info_map.h', 156 'browser/info_map.h',
152 'browser/file_highlighter.cc', 157 'browser/file_highlighter.cc',
153 'browser/file_highlighter.h', 158 'browser/file_highlighter.h',
154 'browser/file_reader.cc', 159 'browser/file_reader.cc',
155 'browser/file_reader.h', 160 'browser/file_reader.h',
156 'browser/lazy_background_task_queue.cc', 161 'browser/lazy_background_task_queue.cc',
157 'browser/lazy_background_task_queue.h', 162 'browser/lazy_background_task_queue.h',
158 'browser/pref_names.cc', 163 'browser/pref_names.cc',
159 'browser/pref_names.h', 164 'browser/pref_names.h',
165 'browser/process_manager.cc',
166 'browser/process_manager.h',
160 'browser/quota_service.cc', 167 'browser/quota_service.cc',
161 'browser/quota_service.h', 168 'browser/quota_service.h',
162 'browser/view_type_utils.cc', 169 'browser/view_type_utils.cc',
163 'browser/view_type_utils.h', 170 'browser/view_type_utils.h',
164 ], 171 ],
165 # Disable c4267 warnings until we fix size_t to int truncations. 172 # Disable c4267 warnings until we fix size_t to int truncations.
166 'msvs_disabled_warnings': [ 4267, ], 173 'msvs_disabled_warnings': [ 4267, ],
167 }, 174 },
168 ] 175 ]
169 } 176 }
OLDNEW
« no previous file with comments | « extensions/browser/process_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698