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

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

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed gn build Created 6 years, 5 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 (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 # All files are stored in these lists which are referenced in the target 6 # All files are stored in these lists which are referenced in the target
7 # below so that the GN build of this target can read in this dictionary and 7 # below so that the GN build of this target can read in this dictionary and
8 # duplicate the same logic without the lists getting out-of-sync. The GN 8 # duplicate the same logic without the lists getting out-of-sync. The GN
9 # .gypi reader can not process conditions and does not know about targets, 9 # .gypi reader can not process conditions and does not know about targets,
10 # etc., it just reads Python dictionaries. 10 # etc., it just reads Python dictionaries.
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'permissions.json', 87 'permissions.json',
88 'preferences_private.json', 88 'preferences_private.json',
89 'push_messaging.idl', 89 'push_messaging.idl',
90 'reading_list_private.json', 90 'reading_list_private.json',
91 'screenlock_private.idl', 91 'screenlock_private.idl',
92 'sessions.json', 92 'sessions.json',
93 'signed_in_devices.idl', 93 'signed_in_devices.idl',
94 'streams_private.idl', 94 'streams_private.idl',
95 'synced_notifications_private.idl', 95 'synced_notifications_private.idl',
96 'sync_file_system.idl', 96 'sync_file_system.idl',
97 'system_cpu.idl',
98 'system_display.idl',
99 'system_indicator.idl', 97 'system_indicator.idl',
100 'system_memory.idl',
101 'system_network.idl',
102 'system_private.json', 98 'system_private.json',
103 'system_storage.idl',
104 'tab_capture.idl', 99 'tab_capture.idl',
105 'tabs.json', 100 'tabs.json',
106 'terminal_private.json', 101 'terminal_private.json',
107 'types.json', 102 'types.json',
108 'virtual_keyboard_private.json', 103 'virtual_keyboard_private.json',
109 'web_navigation.json', 104 'web_navigation.json',
110 'web_request.json', 105 'web_request.json',
111 # Despite the name, this API does not rely on any 106 # Despite the name, this API does not rely on any
112 # WebRTC-specific bits and as such does not belong in 107 # WebRTC-specific bits and as such does not belong in
113 # the enable_webrtc==0 section below. 108 # the enable_webrtc==0 section below.
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 'conditions': [ 214 'conditions': [
220 ['chromeos==1', { 215 ['chromeos==1', {
221 'dependencies': [ 216 'dependencies': [
222 '<(DEPTH)/chrome/chrome.gyp:drive_proto', 217 '<(DEPTH)/chrome/chrome.gyp:drive_proto',
223 ], 218 ],
224 }], 219 }],
225 ], 220 ],
226 }, 221 },
227 ], 222 ],
228 } 223 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698