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

Side by Side Diff: chrome/common/extensions/api/schemas.gypi

Issue 1584473004: Migrate ProcessesEventRouter to the new task manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nit. Created 4 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'sources': [ 6 'sources': [
7 '<@(schema_files)', 7 '<@(schema_files)',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'main_schema_files': [ 10 'main_schema_files': [
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'manifest_types.json', 59 'manifest_types.json',
60 'media_galleries.idl', 60 'media_galleries.idl',
61 'metrics_private.json', 61 'metrics_private.json',
62 'notification_provider.idl', 62 'notification_provider.idl',
63 'notifications.idl', 63 'notifications.idl',
64 'omnibox.json', 64 'omnibox.json',
65 'page_capture.json', 65 'page_capture.json',
66 'passwords_private.idl', 66 'passwords_private.idl',
67 'permissions.json', 67 'permissions.json',
68 'preferences_private.json', 68 'preferences_private.json',
69 'processes.idl',
70 'resources_private.idl', 69 'resources_private.idl',
71 'screenlock_private.idl', 70 'screenlock_private.idl',
72 'sessions.json', 71 'sessions.json',
73 'settings_private.idl', 72 'settings_private.idl',
74 'signed_in_devices.idl', 73 'signed_in_devices.idl',
75 'streams_private.idl', 74 'streams_private.idl',
76 'sync_file_system.idl', 75 'sync_file_system.idl',
77 'system_indicator.idl', 76 'system_indicator.idl',
78 'system_private.json', 77 'system_private.json',
79 'tab_capture.idl', 78 'tab_capture.idl',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 'gcd_private.idl', 137 'gcd_private.idl',
139 'mdns.idl', 138 'mdns.idl',
140 ], 139 ],
141 140
142 'webrtc_schema_files': [ 141 'webrtc_schema_files': [
143 'cast_streaming_receiver_session.idl', 142 'cast_streaming_receiver_session.idl',
144 'cast_streaming_rtp_stream.idl', 143 'cast_streaming_rtp_stream.idl',
145 'cast_streaming_session.idl', 144 'cast_streaming_session.idl',
146 'cast_streaming_udp_transport.idl', 145 'cast_streaming_udp_transport.idl',
147 ], 146 ],
147
148 'task_manager_dependent_schema_files': [
149 'processes.idl',
150 ],
148 151
149 # Input IME schema. 152 # Input IME schema.
150 'input_ime_schema_file': [ 153 'input_ime_schema_file': [
151 'input_ime.json', 154 'input_ime.json',
152 ], 155 ],
153 156
154 'non_compiled_schema_files': [ 157 'non_compiled_schema_files': [
155 '<@(main_non_compiled_schema_files)', 158 '<@(main_non_compiled_schema_files)',
156 ], 159 ],
157 'schema_dependencies': [ 160 'schema_dependencies': [
158 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api', 161 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api',
159 ], 162 ],
160 'schema_files': [ 163 'schema_files': [
161 '<@(main_schema_files)', 164 '<@(main_schema_files)',
162 ], 165 ],
163 'schema_include_rules': [ 166 'schema_include_rules': [
164 '<@(main_schema_include_rules)', 167 '<@(main_schema_include_rules)',
165 ], 168 ],
166 169
167 'chromium_code': 1, 170 'chromium_code': 1,
168 # Disable schema compiler to generate model extension API code. 171 # Disable schema compiler to generate model extension API code.
169 # Only register the extension functions in extension system. 172 # Only register the extension functions in extension system.
170 'conditions': [ 173 'conditions': [
174 ['enable_task_manager==1', {
175 'schema_files': [
176 '<@(task_manager_dependent_schema_files)',
177 ],
178 }],
171 ['chromeos==1', { 179 ['chromeos==1', {
172 'schema_files': [ 180 'schema_files': [
173 '<@(chromeos_schema_files)', 181 '<@(chromeos_schema_files)',
174 ], 182 ],
175 'non_compiled_schema_files': [ 183 'non_compiled_schema_files': [
176 '<@(chromeos_non_compiled_schema_files)', 184 '<@(chromeos_non_compiled_schema_files)',
177 ], 185 ],
178 }, { # chromeos==0 186 }, { # chromeos==0
179 'conditions': [ 187 'conditions': [
180 ['OS=="linux" or OS=="win"', { 188 ['OS=="linux" or OS=="win"', {
(...skipping 13 matching lines...) Expand all
194 '<@(webrtc_schema_files)', 202 '<@(webrtc_schema_files)',
195 ], 203 ],
196 }], 204 }],
197 ], 205 ],
198 'cc_dir': 'chrome/common/extensions/api', 206 'cc_dir': 'chrome/common/extensions/api',
199 'root_namespace': 'extensions::api::%(namespace)s', 207 'root_namespace': 'extensions::api::%(namespace)s',
200 'bundle_name': 'Chrome', 208 'bundle_name': 'Chrome',
201 'impl_dir_': 'chrome/browser/extensions/api', 209 'impl_dir_': 'chrome/browser/extensions/api',
202 }, 210 },
203 } 211 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/schemas.gni ('k') | chrome/test/data/extensions/api_test/processes/api/test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698