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

Side by Side Diff: extensions/extensions.gyp

Issue 62713003: Move ExtensionProcessManager to src/extensions, part 4 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again 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 'target_name': 'extensions_browser', 123 'target_name': 'extensions_browser',
124 'type': 'static_library', 124 'type': 'static_library',
125 'dependencies': [ 125 'dependencies': [
126 'extensions_common', 126 'extensions_common',
127 '../content/content.gyp:content_browser', 127 '../content/content.gyp:content_browser',
128 '../skia/skia.gyp:skia', 128 '../skia/skia.gyp:skia',
129 ], 129 ],
130 'include_dirs': [ 130 'include_dirs': [
131 '..', 131 '..',
132 '<(INTERMEDIATE_DIR)', 132 '<(INTERMEDIATE_DIR)',
133 # Needed to access generated API headers.
134 '<(SHARED_INTERMEDIATE_DIR)',
135 # Needed for grit.
133 '<(SHARED_INTERMEDIATE_DIR)/chrome', 136 '<(SHARED_INTERMEDIATE_DIR)/chrome',
134 ], 137 ],
135 'sources': [ 138 'sources': [
136 'browser/admin_policy.cc', 139 'browser/admin_policy.cc',
137 'browser/admin_policy.h', 140 'browser/admin_policy.h',
138 'browser/extension_prefs_scope.h', 141 'browser/extension_prefs_scope.h',
139 'browser/extension_error.cc', 142 'browser/extension_error.cc',
140 'browser/extension_error.h', 143 'browser/extension_error.h',
141 'browser/extensions_browser_client.cc', 144 'browser/extensions_browser_client.cc',
142 'browser/extensions_browser_client.h', 145 'browser/extensions_browser_client.h',
143 'browser/file_highlighter.cc', 146 'browser/file_highlighter.cc',
144 'browser/file_highlighter.h', 147 'browser/file_highlighter.h',
145 'browser/file_reader.cc', 148 'browser/file_reader.cc',
146 'browser/file_reader.h', 149 'browser/file_reader.h',
147 'browser/lazy_background_task_queue.cc', 150 'browser/lazy_background_task_queue.cc',
148 'browser/lazy_background_task_queue.h', 151 'browser/lazy_background_task_queue.h',
149 'browser/pref_names.cc', 152 'browser/pref_names.cc',
150 'browser/pref_names.h', 153 'browser/pref_names.h',
154 'browser/process_manager.cc',
155 'browser/process_manager.h',
151 'browser/view_type_utils.cc', 156 'browser/view_type_utils.cc',
152 'browser/view_type_utils.h', 157 'browser/view_type_utils.h',
153 ], 158 ],
154 # Disable c4267 warnings until we fix size_t to int truncations. 159 # Disable c4267 warnings until we fix size_t to int truncations.
155 'msvs_disabled_warnings': [ 4267, ], 160 'msvs_disabled_warnings': [ 4267, ],
156 }, 161 },
157 ] 162 ]
158 } 163 }
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