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

Side by Side Diff: chrome/common/extensions/api/api.gyp

Issue 228343002: Cleanup webRequest/Internal API and permission registration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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': 'chrome_api', 8 'target_name': 'chrome_api',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 'system_private.json', 111 'system_private.json',
112 'system_storage.idl', 112 'system_storage.idl',
113 'tab_capture.idl', 113 'tab_capture.idl',
114 'tabs.json', 114 'tabs.json',
115 'terminal_private.json', 115 'terminal_private.json',
116 'types.json', 116 'types.json',
117 'usb.idl', 117 'usb.idl',
118 'virtual_keyboard_private.json', 118 'virtual_keyboard_private.json',
119 'web_navigation.json', 119 'web_navigation.json',
120 'web_request.json', 120 'web_request.json',
121 'web_request_internal.json',
121 # Despite the name, this API does not rely on any 122 # Despite the name, this API does not rely on any
122 # WebRTC-specific bits and as such does not belong in 123 # WebRTC-specific bits and as such does not belong in
123 # the enable_webrtc=0 section below. 124 # the enable_webrtc=0 section below.
124 'webrtc_audio_private.idl', 125 'webrtc_audio_private.idl',
125 'webrtc_logging_private.idl', 126 'webrtc_logging_private.idl',
126 'webstore_private.json', 127 'webstore_private.json',
127 'webview.json', 128 'webview.json',
128 'windows.json', 129 'windows.json',
129 ], 130 ],
130 }, { # OS=="android" 131 }, { # OS=="android"
(...skipping 11 matching lines...) Expand all
142 'omnibox.json', 143 'omnibox.json',
143 'permissions.json', 144 'permissions.json',
144 'runtime.json', 145 'runtime.json',
145 'sync_file_system.idl', 146 'sync_file_system.idl',
146 'tab_capture.idl', 147 'tab_capture.idl',
147 'tabs.json', 148 'tabs.json',
148 'types.json', 149 'types.json',
149 'webview.json', 150 'webview.json',
150 'web_navigation.json', 151 'web_navigation.json',
151 'web_request.json', 152 'web_request.json',
153 'web_request_internal.json',
152 'windows.json', 154 'windows.json',
153 ], 155 ],
154 }], 156 }],
155 ['chromeos==1', { 157 ['chromeos==1', {
156 'schema_files': [ 158 'schema_files': [
157 'accessibility_features.json', 159 'accessibility_features.json',
158 'diagnostics.idl', 160 'diagnostics.idl',
159 'file_browser_handler_internal.json', 161 'file_browser_handler_internal.json',
160 'first_run_private.json', 162 'first_run_private.json',
161 'log_private.idl', 163 'log_private.idl',
(...skipping 21 matching lines...) Expand all
183 'conditions': [ 185 'conditions': [
184 ['chromeos==1', { 186 ['chromeos==1', {
185 'dependencies': [ 187 'dependencies': [
186 '<(DEPTH)/chrome/chrome.gyp:drive_proto', 188 '<(DEPTH)/chrome/chrome.gyp:drive_proto',
187 ], 189 ],
188 }], 190 }],
189 ], 191 ],
190 }, 192 },
191 ], 193 ],
192 } 194 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698