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

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

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No ash/ dependency anymore Created 6 years, 3 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 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 11 matching lines...) Expand all
22 'guest_view_internal.json', 22 'guest_view_internal.json',
23 'hid.idl', 23 'hid.idl',
24 'power.idl', 24 'power.idl',
25 'runtime.json', 25 'runtime.json',
26 'serial.idl', 26 'serial.idl',
27 'socket.idl', 27 'socket.idl',
28 'sockets_tcp.idl', 28 'sockets_tcp.idl',
29 'sockets_tcp_server.idl', 29 'sockets_tcp_server.idl',
30 'sockets_udp.idl', 30 'sockets_udp.idl',
31 'storage.json', 31 'storage.json',
32 'system_cpu.idl',
33 'system_display.idl',
34 'system_memory.idl',
35 'system_network.idl',
36 'system_storage.idl',
32 'test.json', 37 'test.json',
33 'usb.idl', 38 'usb.idl',
34 'usb_private.idl', 39 'usb_private.idl',
35 ], 40 ],
36 'non_compiled_schema_files': [ 41 'non_compiled_schema_files': [
37 ], 42 ],
38 'conditions': [ 43 'conditions': [
39 ['enable_extensions==1', { 44 ['enable_extensions==1', {
40 'schema_files': [ 45 'schema_files': [
41 '<@(main_schema_files)', 46 '<@(main_schema_files)',
42 ], 47 ],
43 }, { 48 }, {
44 'schema_files': [ 49 'schema_files': [
45 '<@(android_schema_files)', 50 '<@(android_schema_files)',
46 ], 51 ],
47 }], 52 }],
48 ], 53 ],
49 'cc_dir': 'extensions/common/api', 54 'cc_dir': 'extensions/common/api',
50 'root_namespace': 'extensions::core_api::%(namespace)s', 55 'root_namespace': 'extensions::core_api::%(namespace)s',
51 'impl_dir_': 'extensions/browser/api', 56 'impl_dir_': 'extensions/browser/api',
52 }, 57 },
53 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698