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

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

Issue 369893008: Move the serial API to extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add missing dependency from usb_service to chromeos 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/extensions/api/BUILD.gn ('k') | chrome/common/extensions/api/serial.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'metrics_private.json', 82 'metrics_private.json',
83 'networking_private.json', 83 'networking_private.json',
84 'notifications.idl', 84 'notifications.idl',
85 'omnibox.json', 85 'omnibox.json',
86 'page_capture.json', 86 'page_capture.json',
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 'serial.idl',
93 'sessions.json', 92 'sessions.json',
94 'signed_in_devices.idl', 93 'signed_in_devices.idl',
95 'streams_private.idl', 94 'streams_private.idl',
96 'synced_notifications_private.idl', 95 'synced_notifications_private.idl',
97 'sync_file_system.idl', 96 'sync_file_system.idl',
98 'system_cpu.idl', 97 'system_cpu.idl',
99 'system_display.idl', 98 'system_display.idl',
100 'system_indicator.idl', 99 'system_indicator.idl',
101 'system_memory.idl', 100 'system_memory.idl',
102 'system_network.idl', 101 'system_network.idl',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 }], 204 }],
206 ], 205 ],
207 'cc_dir': 'chrome/common/extensions/api', 206 'cc_dir': 'chrome/common/extensions/api',
208 'root_namespace': 'extensions::api', 207 'root_namespace': 'extensions::api',
209 }, 208 },
210 'dependencies': [ 209 'dependencies': [
211 # Different APIs include some headers from chrome/common that in turn 210 # Different APIs include some headers from chrome/common that in turn
212 # include generated headers from these targets. 211 # include generated headers from these targets.
213 # TODO(brettw) this should be made unnecessary if possible. 212 # TODO(brettw) this should be made unnecessary if possible.
214 '<(DEPTH)/components/components.gyp:component_metrics_proto', 213 '<(DEPTH)/components/components.gyp:component_metrics_proto',
215 '<(DEPTH)/device/serial/serial.gyp:device_serial',
216 214
217 '<(DEPTH)/content/content.gyp:content_browser', 215 '<(DEPTH)/content/content.gyp:content_browser',
218 '<(DEPTH)/skia/skia.gyp:skia', 216 '<(DEPTH)/skia/skia.gyp:skia',
219 '<(DEPTH)/sync/sync.gyp:sync', 217 '<(DEPTH)/sync/sync.gyp:sync',
220 ], 218 ],
221 'conditions': [ 219 'conditions': [
222 ['chromeos==1', { 220 ['chromeos==1', {
223 'dependencies': [ 221 'dependencies': [
224 '<(DEPTH)/chrome/chrome.gyp:drive_proto', 222 '<(DEPTH)/chrome/chrome.gyp:drive_proto',
225 ], 223 ],
226 }], 224 }],
227 ], 225 ],
228 }, 226 },
229 ], 227 ],
230 } 228 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/BUILD.gn ('k') | chrome/common/extensions/api/serial.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698